1

images in rich text do not appear in the PDF export – Need help!

I have 5 fields in my Ninox database:

  • Tittle
  • Description
  • Img1
  • Img2
  • Img3
  • Rich Text

I have created a button with this formula:

Rich Text := "<h1>" + Tittle + "</h1>" +
    "<p>" + Description + "</p>" +
    "<div style='display: flex; gap: 10px;'>" +
    "<img src='" + shareFile(Img1) + "' alt='Image 1' width='300'>" +
    "<img src='" + shareFile(Img2) + "' alt='Image 2' width='300'>" + 
    "<img src='" + shareFile(Img3) + "' alt='Image 3' width='300'>" +
    "</div>"

The Rich Text field correctly displays the Title, Description, and the three images.

I have also created a print layout that contains only the "Rich Text" field. On the Ninox preview, the Title, Description, and images all appear as expected.

However, when I try to print to PDF, the images do not appear.

Does anyone know how to fix this? Any help would be greatly appreciated!

Reply

null