PDF Report Formatting

Hello!

I’m running into some issues getting the picket fence and other PDF reports to generate correctly. When I use metadata to include details from the dicom header such as machine name and SN, the metadata prints underneath the report text. Is there a way to fix this?

This is what the main part of the report is looking like:
Screenshot 2023-04-27 140400.png

Here is roughly the code I’m using for the PDF:

pf.publish_pdf(filename=‘Results.pdf’,
open_file=True,
metadata={‘Machine Name’: dicomHeader.StationName,
‘Serial Number’: dicomHeader.DeviceSerialNumber},
logo=‘C:/Users/[USER]/Desktop/Projects & Research/logo.png’
)

I have the same bug. I opened an issue in GitHub to follow a possible solution.