Hi!
I have a folder with 50000 images. These are tif images with documents of varying pages needing to be merged together as a multipage tif image based on their common name. For example:
D001111.001
D001111.002
D001111.003
D001111.004
D001112.001
D001112.002
D001113.001
D001113.002
D001113.003
D001113.004
D001113.005
I need to compile into multipage tifs as:
D001111.tif (4 pages)
D001112.tif (2 pages)
D001113.tif (5 pages)
I've tried:
Some of my documents are over 1000 pages so I can't do the D001111.001, D001111.002, D001111.003, etc list (also, I don't know the number of pages for each "document")
My resulting multipage tifs contain the correct number of images, but they are all out of order and not in the .001, .002, .003 order of the filenames.
Any idea how I can do this with the images in order?
I have a folder with 50000 images. These are tif images with documents of varying pages needing to be merged together as a multipage tif image based on their common name. For example:
D001111.001
D001111.002
D001111.003
D001111.004
D001112.001
D001112.002
D001113.001
D001113.002
D001113.003
D001113.004
D001113.005
I need to compile into multipage tifs as:
D001111.tif (4 pages)
D001112.tif (2 pages)
D001113.tif (5 pages)
I've tried:
Code:
"c:\program files (x86)\Irfanview\i_view32.exe" /multitif=(b:\MergedImages\D001111.tif,b:\SingleImages\D001111 .*) /tifc=4 /killmesoftly /silent "c:\program files (x86)\Irfanview\i_view32.exe" /multitif=(b:\MergedImages\D001112.tif,b:\SingleImages\D001112 .*) /tifc=4 /killmesoftly /silent? "c:\program files (x86)\Irfanview\i_view32.exe" /multitif=(b:\MergedImages\D001113.tif,b:\SingleImages\D001113 .*) /tifc=4 /killmesoftly /silent? ?
My resulting multipage tifs contain the correct number of images, but they are all out of order and not in the .001, .002, .003 order of the filenames.
Any idea how I can do this with the images in order?
Comment