Search found 33 matches

by johnfl68
2012-07-13T03:33:11-07:00
Forum: PerlMagick
Topic: Combining Images with offset
Replies: 2
Views: 18349

Re: Combining Images with offset

On this page, a little ways down:

http://www.imagemagick.org/Usage/annotating/

I found this example for positioning sub-images, using this:

Code: Select all

composite -geometry +31+105  hand_point.gif dragon.gif \
            dragon_claw_pointed.jpg
I'm just not exactly sure how to translate that to perl now.
by johnfl68
2012-07-13T01:01:00-07:00
Forum: PerlMagick
Topic: Combining Images with offset
Replies: 2
Views: 18349

Combining Images with offset

Hello: I am trying to add some icons to a large image that I have also done some Annotations to , and I want to place the icons at specific locations. I have tried composite the image with compose over with geometry, with gravity and geometry, etc., and the image is never anywhere that makes sense t...
by johnfl68
2012-07-09T18:40:32-07:00
Forum: PerlMagick
Topic: Frame animation to mp4
Replies: 5
Views: 25677

Frame animation to mp4

Hello: Can anyone provide any samples for converting a set of images to a mp4 using perl? I am currently using ImageMagick in perl for some simple compositing. What I am looking for, I have 5 PNG images, I want to display each for 1/2 second and hold on the last for 3 seconds. I have not found any e...