Search found 4 matches

by ghprod
2011-04-21T18:32:44-07:00
Forum: Magick++
Topic: Animated GIF loss early frame when merging
Replies: 6
Views: 27622

Re: Animated GIF loss early frame when merging

Hi Fred, its work now .. i dont know if single space would be some problem for proccess ... thank all .. case solved!

this is my final code

<?php

$cmd = "convert image.jpg null: ( logo_glittered.gif -coalesce ) -gravity center -geometry +0+5 -layers composite -layers optimize GIF:-";

header ...
by ghprod
2011-04-21T18:28:46-07:00
Forum: Magick++
Topic: Animated GIF loss early frame when merging
Replies: 6
Views: 27622

Re: Animated GIF loss early frame when merging

try this


convert image.jpg \
null: \
\( logo_glittered.gif -coalesce \) \
-gravity center -geometry +0+5 -layers Composite \
-layers Optimize \
test.gif


see http://www.imagemagick.org/Usage/anim_m ... ite_single

Hi Fred, thanks for very very quick reply :)

i've tried but animated GIF not ...
by ghprod
2011-04-21T18:18:54-07:00
Forum: Magick++
Topic: Animated GIF loss early frame when merging
Replies: 6
Views: 27622

Re: Animated GIF loss early frame when merging

fmw42 wrote:this should be reposted in the User's forum as it has nothing to do with Magic++
Hi sorry for posted in wrong section, please admin move this thread into new room :)
regards
by ghprod
2011-04-21T18:12:12-07:00
Forum: Magick++
Topic: Animated GIF loss early frame when merging
Replies: 6
Views: 27622

Animated GIF loss early frame when merging

Hi,

i try to merge
- animated GIF (http://s4.postimage.org/n13gxobo/logo_glittered.gif)
http://s4.postimage.org/n13gxobo/logo_glittered.gif
- static background JPG (http://s4.postimage.org/szwq60bpx/image.jpg)
http://s4.postimage.org/szwq60bpx/image.jpg


This is my code

<?php

$cmd ...