I have a folder full of very large TIFF files (between 30MB and 350MB each) that need to be converted into a PDF file. I can easily use convert to create it, but the size becomes an issue very quickly. I can convert the TIFF files to JPEGs and convert them into a PDF and save 80% of the size which still maintaining the 100% scale and 100% quality. However I am wanting a single-line method rather than a multi-stage one as this is a batched process to run through lots of folders, and due to the size of the files, it takes an eternity to run too.
My current method is to introduce some compression on the TIFF files
Code: Select all
convert -limit memory 0 -limit map 0 *.tif -compress zip -quality 100 out.pdf
But this is still way larger than using intemedary JPG files and making the PDF from them.
So, is there a way I can compress multiple TIFF files (not a multipage TIFF) into a PDF and achieve good (or great) compression, without loss of size or quality, without having to do a convert to JPEG in-between?
Using ImageMagick .6.78 Q16 windows in portable install mode.