Thanks for getting back to me.
I have two signatures (Signature1 and Signature2) , for customer and companyrep. The app first saves to a collection,
Collect(
KBLMalcolm,
{
Signature1:Substitute(JSON(PenInput2.Image,IncludeBinaryData),"""",""),
Signature2:Substitute(JSON(PenInput2_1.Image,IncludeBinaryData),"""",""),
Image10:Substitute(JSON(Image10.Image,IncludeBinaryData),"""","")
}
)
then once they are ready to submit to sharepoint, i have a submit button in the gallery
Patch(Malcolm, Defaults(Malcolm),{Signature1: CollectGallery.Selected.Signature1,Signature2: CollectGallery.Selected.Signature2,Image10:CollectGallery.Selected.Image10});
SaveData(KBLMalcolm."MalcolmKeep")
I then have a flow with some html in compose that pulls the data into a pdf (See attached). Everything works as it should, with the exception of, if no signature is entered, then im left with a red X on the pdf where the signature would be. (like a broken link or Onerror) I have a blank image saved in powerapps called Image10 that i want to use to replace with in the event that no signature is entered.