I am pretty new at image magick, but i think there's a limitation when using a list of files with mogrify. I want to convert files in a different machine, and in order to do that it is given me a list of files, but mogrify can't find the list using the '@' operator. Take a look at my commands below:
Code: Select all
"\\server\ImageMagick\ImageMagick-6.7.5-10\mogrify.exe" -type bilevel -monochrome -compress group4 "\\server\MyFolder\out - files\@list.txt"
and I also tried this way:I get this erro: mogrify.exe: unable to open image `\\server\MyFolder\out - files\@list.txt': No such file or directory @ error/blob.c/OpenBlob/2614.
Code: Select all
"\\server\ImageMagick\ImageMagick-6.7.5-10\mogrify.exe" -type bilevel -monochrome -compress group4 @"\\server\MyFolder\out - files\list.txt"
Let's assume I am running this command from my c:\, so I can't run a "remote" list of files from my current working path. I's it a bug? or a possible improvement?mogrify.exe: unable to open image `@\\server\MyFolder\out - files\list.txt': No such file or directory @ error/blob.c/OpenBlob/2614.
Thanks