Search found 9 matches

by Demian
2014-07-31T10:31:24-07:00
Forum: Users
Topic: Annotate filename without extension on Windows
Replies: 2
Views: 2719

Re: Annotate filename without extension on Windows

You are using this inside a BAT script file, I suppose? Correct. Perhaps you want "%t", which will be expanded by ImageMagick for each image (not once by Windows). See http://www.imagemagick.org/script/escape.php That is exactly what I needed. Thanks for the link too! I didn't come across that ...
by Demian
2014-07-31T08:56:50-07:00
Forum: Users
Topic: Annotate filename without extension on Windows
Replies: 2
Views: 2719

Annotate filename without extension on Windows

I've been reading documentation, StackOverflow, and these forums for a while now yet I fail to do something as simple as annotating the filename without the extension on Windows. I'm using ImageMagick-6.8.9-6-Q16-x64-dll.exe Windows binary release from the official website. Here's some related ...
by Demian
2012-01-22T02:38:31-07:00
Forum: Users
Topic: GIF animation frames in wrong order
Replies: 8
Views: 21502

Re: GIF animation frames in wrong order

Pardon the hassle. It was a problem with the image naming. Everything works properly now. I for one am curious to know how you had misnumbered them? Contrary to what I said, I forgot to rename the images with leading zeros. I had the images named like that at one point but I edited the animation ...
by Demian
2012-01-21T13:50:36-07:00
Forum: Users
Topic: GIF animation frames in wrong order
Replies: 8
Views: 21502

Re: GIF animation frames in wrong order

Pardon the hassle. It was a problem with the image naming. Everything works properly now.
by Demian
2012-01-20T12:51:19-07:00
Forum: Users
Topic: GIF animation frames in wrong order
Replies: 8
Views: 21502

Re: GIF animation frames in wrong order

fmw42 wrote:It may be how you have your images numbered and how the wild card sorts them. You may need to use numbers will leading zeroes in your filenames. How did you name them?
001-009
010-090
100-180

There shouldn't be a problem with the names.
by Demian
2012-01-20T11:11:36-07:00
Forum: Users
Topic: GIF animation frames in wrong order
Replies: 8
Views: 21502

GIF animation frames in wrong order

ImageMagick 6.7.4-2 Windows 7 Windows command-line Here's what I used to create the gif below. I have 180 frames in gif format numbered from 0 to 180. I have no other images in the folder. -convert -loop 0 -delay 4 *.gif animation.gif I've tried various -dispose methods but none of them have any ...
by Demian
2012-01-19T10:32:53-07:00
Forum: Users
Topic: Overlaying an image on multiple images
Replies: 6
Views: 13602

Re: Overlaying an image on multiple images

Try this convert animation.gif -coalesce -gravity South -geometry +0+0 null: watermark.png -layers composite -layers optimize watermarked_animation.gif Oh my. That worked. Thanks! Any idea how to make individual frames longer in a gif? For example frame 1 would be 2 seconds long, frames 2-100 4ms ...
by Demian
2012-01-19T06:06:30-07:00
Forum: Users
Topic: Overlaying an image on multiple images
Replies: 6
Views: 13602

Re: Overlaying an image on multiple images

I can't figure out how it mogrify works. Where is the input image? This is as far as I got but it gives error not to mention there is no input image.

Code: Select all

mogrify -draw 'image Over 0,0 0,0 "overlay.gif"' anim_%d.gif
by Demian
2012-01-18T10:10:26-07:00
Forum: Users
Topic: Overlaying an image on multiple images
Replies: 6
Views: 13602

Overlaying an image on multiple images

ImageMagick 6.7.4-2 Windows 7 Windows command-line I'm really new to ImageMagick but I managed to extract all frames from a GIF animation. Now I would like to overlay a gif image on top of all of these frames. I know how to compile the frames back to GIF. I can overlay individual images but not all ...