How to create PDF / A-1a pdf in PHP?

I am using a library mPDF

. It creates PDF files in PDF / A-1b format. But I want to create PDF / A-1a pdf format. How can i do this?

with the option $this->PDFA = true;

I can create PDF / A-1b format. What do I need to do for PDF / A-1a?

+3


source to share


1 answer


According to the mPDF manual, while $this->PDFA

set to true then enforces the PDF / A-1b spec . What happens if you set it to false?



0


source







All Articles