I’m creating a new print format and I want to insert my company’s signature in the html code via image path, i.e via src. But I don’t know how to copy my image’s path. The image is in /home/shonan/Downloads/ and the name of my image is Companys sign.jpeg
Place the image in your app
app_name/public/images
Then in the html img src
/assets/app_name/images/image_name.png
You can upload your file using the File module, set it as a public file, and then copy the file URL. You can paste this URL into the print format.
<img src="/files/custom_stamp.png" alt="Company Stamp" style="height: 100px;">