Great idea, itβs working.
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
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.