16
5
I try to convert some jpgs into one single pdf in using convert.
convert *.jpg new.pdf
But convert does quit after 18 pages. The output then is ok but not complete.
convert-im6.q16: DistributedPixelCache '127.0.0.1' @ error/distribute-cache.c/ConnectPixelCacheServer/244.
convert-im6.q16: cache resources exhausted `094708.JPG' @ error/cache.c/OpenPixelCache/3945.
...
I tried some limit settings but without success. If I try other jpgs then it is the same result.
Any ideas? I have plenty of free memory.
Version: ImageMagick 6.9.7-4 Q16 x86_64 20170114
...
Delegates (built-in): bzlib djvu fftw fontconfig freetype jbig jng jp2 jpeg lcms lqr ltdl lzma openexr pangocairo png tiff wmf x xml zlib
It looks like a newer version is available so you might just check the site and download and update if applicable. If it's a bug, it may be patched in the newer version. Something to consider perhaps at least. https://www.imagemagick.org/script/download.php
– Pimp Juice IT – 2017-02-14T13:13:22.9032
Check out the
– Pimp Juice IT – 2017-02-14T13:20:55.350-limitswitch.... https://www.imagemagick.org/script/command-line-options.php#limit You can likely-limit memory <#>with this switch in case it's your machine running out of memory to process all the files. Otherwise, try to merge less than you are in smaller batches and see if that makes any difference. So if there are a hundred, copy 25 to a test folder and see if the same happens with 25 for example. Perhaps you can merge them all in smaller chunk then at the end merge the PDF documents that were created together. I've always used PDFTK for PDF file merges though.