Hi@Matt383,
Based on the issue that you mentioned, do you want to save the image and pen input to your SP list?
Could you please share a bit more about the scenario, do you want to display the picture or the URL in the corresponding column?
If you want to display a picture in the SharePoint list column, I am afraid that there is no way to achieve this currently in PowerApps. If you want to display the URL or the image within the SP list, you could try to convert the image into a binary format.
I have a test on my side, please take a try as below.
Add an add picture control(AddMediaWithImage1)
Add a Button and set the OnSelect property as below:
Patch(
SharepointListDB,
Defaults(SharepointListDB),
{Title:Text(Now()),
Ima: Substitute(JSON(UploadedImage1.Image,JSONFormat.IncludeBinaryData),"""","")
}
)
Note: Title is a Text column. Ima is a Multiple-line-of-text column to store the image.
After this, you could insert a Gallery to display the image. Within the Ima column, you just could display the image as an URL in a Multiple-line-of-text column.
For the signature, you could add a PenInput control and save it into a collection as the following thread:
https://powerusers.microsoft.com/t5/Building-Power-Apps/Save-Signature-to-SharePoint-List/td-p/76661
Also, you can check the following article to save the signature:
https://iiu.dk/2019/10/12/powerapps-pen-input/
Best Regards,
Qi