I have a instant flow that converts an image over to my sharepoint library called ImagesToJSON,
In the app, the onchange of my addmediabutton is,
If(UploadedImage1_2.Image=SampleImage, "", Collect(ImageCollection,{Image1:UploadedImage1_2.Image, FileName:Label1_2.Text & "-" & Text(Now(),"ddmmyyyyhhmmssms") & ".jpg",Description_Disassembly:Description_txt.Text}))
On the Upload button, i have the onselect set to,
UpdateContext({VarLoading:true});
Set(ImagesToJSON, JSON(ImageCollection,JSONFormat.IncludeBinaryData));Disassembly_1.Run(ImagesToJSON);Reset(AddMediaButton1_2);Clear(ImageCollection)
The image comes across into sharepoint without a problem but would like to also bring a Description field across with it as well. Is it possible to modify the flow to bring the Description_txt content over to the sharepoint library with the image? Any advice would be much appreciated.


The file content of this is set to
dataUriToBinary(items('Apply_to_each')['Image1'])