I am currently trying to generate a PDF that is PDF/A-1(a|b). The platform to which I have to upload the PDF states that all contained images should be compressed using CCITT (group 4) with a resolution less than 310dpi.
I scanned an image in .tif
format, used tiffcp -c g4
in order apply CCITT group 4. For the purpose of converting the .tif
into an .pdf
, I was using tiff2pdf
without any options (which should produce an output where all black and white files are compressed into a single strip CCITT G4 Fax
).
Afterwards, in order to ensure PDF/A-1(a|b) compatibility, I used the approach described in this post to post-process the .pdf
.
When checked with verapdf, the file is PDF/A compliant but it is still rejected from the platform to which I would like to upload the file.
I also tried to copy the black/white image into LibreOffice and exported a PDF/A compliant PDF from there which was rejected, too.
I am just wondering whether I am thinking in the wrong direction; do you know any other (preferably FOSS) tool that could generate a PDF/A compliant .pdf
with CCIT compressed images?