I've got 264 images which I want to bind into a single PDF file.
I can do this at the command line for a few images ...
Code: Select all
convert img1.tif img2.tif img3.tif big.pdf
But the actual filenames are ...
Code: Select all
\\BV-CLUSTER-FILE\BANDVULCFAXESRECEIVED\2009\01\22\2009-01-22__09-45__Page-0153__11SAEAJ0.tif
\\BV-CLUSTER-FILE\BANDVULCFAXESRECEIVED\2009\01\22\2009-01-22__09-45__Page-0154__12161ASD.tif
\\BV-CLUSTER-FILE\BANDVULCFAXESRECEIVED\2009\05\29\2009-05-29__09-27__Page-0156__12IXGJHM.tif
I see from
Code: Select all
convert -h
So, I thought
Code: Select all
convert -write big.pdf -
But nope. I get an error ...
Code: Select all
[Z:\] >convert - z:\big.pdf
convert: no decode delegate for this image format `C:/DOCUME~1/RichardQ/LOCALS~1/Temp/magick-w0Ejp0Ju' @ constitute.c/ReadImage/503.
convert: missing an image filename `z:\big.pdf' @ convert.c/ConvertImageCommand/2772.
[Z:\] >convert - -write z:\big.pdf
convert: no decode delegate for this image format `C:/DOCUME~1/RichardQ/LOCALS~1/Temp/magick-9b-KUPZQ' @ constitute.c/ReadImage/503.
convert: option requires an argument `-write' @ convert.c/ConvertImageCommand/2752.
[Z:\] >convert -write z:\big.pdf -
convert: missing an image filename `-' @ convert.c/ConvertImageCommand/2772.
[Z:\] >convert -write z:\big.pdf
convert: option requires an argument `-write' @ convert.c/ConvertImageCommand/2752.
[Z:\] >convert -write z:\big.pdf
convert: option requires an argument `-write' @ convert.c/ConvertImageCommand/2752.
[Z:\] >convert -write z:\big.pdf --
convert: missing an image filename `--' @ convert.c/ConvertImageCommand/2772.
[Z:\] >convert -write z:\big.pdf -
convert: missing an image filename `-' @ convert.c/ConvertImageCommand/2772.
[Z:\] >convert -- -write z:\big.pdf
convert: unable to open image `-write': No such file or directory @ blob.c/OpenBlob/2476.
convert: missing an image filename `z:\big.pdf' @ convert.c/ConvertImageCommand/2772.
[Z:\] >convert -write z:\big.pdf -adjoin -
convert: missing an image filename `-' @ convert.c/ConvertImageCommand/2772.
Regards,
Richard Quadling.