
Announcements
Hello Everyone,
I have built a PowerApp where I use the Pencil Input to sign a PDF with a signature.
The PowerApp passes the path of the document and the signature graphic as Base64 to a Power Automate flow.
Set(varSignBlob; JSON(PenInput1.Image;JSONFormat.IncludeBinaryData));;
Set( varSignBlob64bit; Mid(varSignBlob; 24;Len(varSignBlob) - 24 ) );;
SignPDF.Run(Gallery1.Selected.'Vollständiger Pfad';varSignBlob64bit;Input_Sign_X_Pos.Text;Input_Sign_Y_Pos.Text);;
There, the signature graphic is decoded
base64ToBinary(triggerBody()['text_1'])
and the document is signed using Encodian's SignPDF.
Everything works wonderfully, however, the signature is not placed horizontally but vertically in the PDF.
When I save the graphic as a file, it is correctly oriented horizontally.
Does anyone have an idea where the error might be?
@Jay-Encodian : Do you know anything about this issue?