*tiff to pdf/a

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
asdf
Posts: 1
Joined: 2018-10-30T05:14:34-07:00
Authentication code: 1152

*tiff to pdf/a

Post by asdf »

Hi

I use this two cmd's for converting tiff files to a pdf and then convert this pdf to a pdf/a.

ImageMagick:

Code: Select all

convert "test\*.tif" -compress jpeg -quality 80 "C:\Temp\TestData\tiff2pdfa\normal2000.pdf"
GhostScript:

Code: Select all

-dPDFA=2 -sColorConversionStrategy=RGB -sDEVICE=pdfwrite -dPDFACompatibilityPolicy=1 -dNOPAUSE -dBATCH -o "C:\Temp\TestData\tiff2pdfa\pdfaraw.pdf" "C:\Temp\TestData\tiff2pdfa\PDFA\PDFA_def.ps" "C:\Temp\TestData\tiff2pdfa\raw.pdf"
Im using the "PDFA_def.ps" file of https://www.mcbsys.com/blog/2018/10/bat ... 8-edition/
https://stackoverflow.com/questions/530 ... t-to-pdf-a

I would like to convert the tiff files directly to pdf/a. In other post's i read that IM supports now pdf/a.
How do I change the delegates.xml that this works directly?
Post Reply