Using Win XP SP3; ImageMagick-6.5.2-4;
I can't reference files with @file.txt, with a file like this:
l.txt:
Code: Select all
a.jpg
b.jpg
c.jpg
Code: Select all
convert @l.txt abc.pdf
Code: Select all
convert: unable to open image `a.jpg[⌂☻]': Invalid argument @ blob.c/OpenBlob/2489.
convert: unable to open image `b.jpg[⌂☻]': Invalid argument @ blob.c/OpenBlob/2489.
convert: unable to open image `c.jpg[⌂☻]': Invalid argument @ blob.c/OpenBlob/2489.
convert: missing an image filename `abc.pdf' @ convert.c/ConvertImageCommand/2775.
I also noted some strange behavior using the *:
Code: Select all
convert *.jpg asterisk.pdf
In both versions, I have a folder named "some folder" in the same directory I have convert.exe and the .jpg files;convert: unable to open image `some folder\': No such file or directory @ blob.c/OpenBlob/2489.
6.5.1-6 Works perfectlly for me, except for one fact... When using @ to reference files, I can't reference files with a blank space in the filename (" "), but I also can't reference then with quotes in the file. I mean, a file like
file1.txt:
Code: Select all
c:\some-image-1.jpg
c:\some-image-2.jpg
c:\some-image-3.jpg
file2.txt:
Code: Select all
c:\some image-1.jpg
c:\some image-2.jpg
c:\some image-3.jpg
file3.txt:
Code: Select all
"c:\some-image-1.jpg"
"c:\some image-2.jpg"
"c:\some image-3.jpg"
That is the reason I need to update the version, but the current not even works with the file1.txt... This was a change in the sintax, maybe? I don't find any documentation of this in the site.
On the other hand, the sintax:
convert c:\a%d.Jpg[1-6] c:\as.pdf
Works well in both versions. But I can't use this method, because the filenames I target are something like:
Code: Select all
c:\a1 z1.jpg
c:\a1 z2.jpg
c:\a2 z1.jpg
c:\a3 z1.jpg
c:\a4 z1.jpg
c:\a4 z2.jpg
c:\a4 z3.jpg
c:\a5 z1.jpg
Thanks for the attention