*tiff to pdf/a
Posted: 2018-10-30T05:33:13-07:00
Hi
I use this two cmd's for converting tiff files to a pdf and then convert this pdf to a pdf/a.
ImageMagick:
GhostScript:
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?
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"
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"
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?