How to upload signature as image on manager

Great idea, it’s working.

Thanks Syed. I was looking for this. :grinning:

1 Like

Hi @Mark thank you for the info. What would be the correct code for linking an image called logo.png on the Desktop on a Mac?
And are the <> on either side of β€œ username β€œ and β€œ folder β€œ mandatory?

read post#19 above.

no. but irrelevant on a Mac since that method works only on Windows according to feedbacks received form users.

Thanks for the clarification.
Is there a method that would work on a Mac?

have you tried as instructed in post#19 ?

Yes I did. I only get a β€œ?” mark on the saved pdf.

what about the document displayed in Manager? does the image render properly? if yes, use a different method to save your pdf using the Print button.

The document preview on Manager is the same as the pdf.
I’ve also tried using a local host server as instructed in this github.

please post the code you used to display the image on your document.
paste the code as a pre-formatted text using
image

Sorry, I’ll just replace < with (

(img src=β€œhttp://127.0.0.1:2345/Photos/logo.png”)

this is not what was instructed in post#19. the instructions were specifically provided because Mac does not process local image files correctly.

Okay, I’ve tried

(img src=β€œ/Users/MyUserName/Photos/logo.png” alt=β€œImage” width=β€œ199” height=β€œ99”)

I get a ? mark and /Photos/logo.png" alt=β€œImage” width=β€œ199” height=β€œ99”> after that.

you did not convert your image to base64 format which is the first step in the instruction.
after converting your image to base64 format, you should use the base64 code as the image source.
it will be something similar to below.

It works, thanks.