I hope somebody can help me and Im not using the wrong section 🙂
Im trying to implement my Azure function to PowerApps. The function combines two images which are located in my azure storage.
this is already working with static items from my own azure data storage. and now im trying to implement it to my powerapps with this tutorial
https://powerapps.microsoft.com/de-de/blog/using-azure-functions-in-powerapps/
I want to Run my Azure function like in this tutorial
| AzureFunction.RunThis(Input1:ThisItem.image1, Input2:PictureBox.Image; Output:ThisItem.OUTputfield) |
I Think I need a little fine tuning on my C# Azure Function itself and I need to setup a json.
This is how I call my function at the moment
[FunctionName("ConvertMe")]
public async static Task RunASync([HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req,
[Blob("test", FileAccess.ReadWrite)] CloudBlobContainer blobContainer,
[Blob("test/out3.png", FileAccess.ReadWrite)] CloudBlockBlob outputBlob, ILogger log)
I need this function because common data service still cant handle transparency and this is my workaround.