I installed version 6.5.1-0 q16 on my vista machine to run through an archive of pictures and append them together. This works fine. I installed a newer version of imagemagick (6.5.2-4 q16) and the same command no longer works (convert @list.txt +append test.png). I found that I could also run the command (convert %d[0-307].tif +append test.png), but this only worked once. If I run the @list command i get blob.c 2476 errors, the %d command is also throwing up errors. Any suggestions on how to get this fixed?
Thanks!
+append no longer works for me.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: +append no longer works for me.
This works fine for me under IM 6.5.2-4 Q16 Mac OSX Tiger:
convert rose: rose: rose: +append rose_append.png
so it might have to do with the @list.txt
convert rose: rose: rose: +append rose_append.png
so it might have to do with the @list.txt
Re: +append no longer works for me.
i just tried the ":" method and no dice. I get this error:
convert: unable to open image '1.tif:': Invalid argument @ blob.c/OpenBlob/2476.
it repeats for all the filenames. To be sure that the images are real i used the imdisplay command and imagemagick can see them.
Thanks!
convert: unable to open image '1.tif:': Invalid argument @ blob.c/OpenBlob/2476.
it repeats for all the filenames. To be sure that the images are real i used the imdisplay command and imagemagick can see them.
Thanks!
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: +append no longer works for me.
The ":" is only for special IM internal images, such as rose: and logo: see http://www.imagemagick.org/script/forma ... tin-images
try using 3 of your images without the :
convert image1.jpg image2.jpg image3.jpg +append result.jpg
For example:
convert rose: rose.jpg
convert rose.jpg rose.jpg rose.jpg +append rose_append.jpg
try using 3 of your images without the :
convert image1.jpg image2.jpg image3.jpg +append result.jpg
For example:
convert rose: rose.jpg
convert rose.jpg rose.jpg rose.jpg +append rose_append.jpg
Re: +append no longer works for me.
That seems to work, but is there a workaround to doing this? I have 307 files that i need to append and i have to do the appending roughly another 15 times, which is why I tried the @list.txt command and the %d[1-307].tif.
Any help would be awesome!
Thanks!
Any help would be awesome!
Thanks!
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: +append no longer works for me.
I thought I read in one of the relatively recent posts that @file.txt was fixed. I have to run out. So try searching the list and see what you find. Otherwise, write again and wait for Magick's answer.
Is it possible that your list is too long for the command line?
Perhaps you don't have enough memory to hold all the images at once? Don't know if that is how append works.
What happens, as a test, if you make it smaller, say 3 images, and try that to see if it even works? If that is the case, you can configure the IM command to work with disk space, but I don't recall the command. The list also has many examples of working with large number of images and/or too small amounts of memory. Search for that also.
I will check back when I get back and see if you have found anything and look further myself.
Is it possible that your list is too long for the command line?
Perhaps you don't have enough memory to hold all the images at once? Don't know if that is how append works.
What happens, as a test, if you make it smaller, say 3 images, and try that to see if it even works? If that is the case, you can configure the IM command to work with disk space, but I don't recall the command. The list also has many examples of working with large number of images and/or too small amounts of memory. Search for that also.
I will check back when I get back and see if you have found anything and look further myself.
Re: +append no longer works for me.
i have tried the shorter lists and that does not work. I will look at the options thanks!
Re: +append no longer works for me.
I have found a workaround. it seems when i was doing the %d method i was placing the extension in the wrong place:
WRONG:
convert %d[1-307].tif
RIGHT:
convert %d.tif[1-307]
This code worked for me
WRONG:
convert %d[1-307].tif
RIGHT:
convert %d.tif[1-307]
This code worked for me