Converting animated gif with shadow gets stuck

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
yakobom
Posts: 27
Joined: 2015-10-27T22:40:37-07:00
Authentication code: 1151

Converting animated gif with shadow gets stuck

Post by yakobom »

Hi,
I'm trying to create an animated gif with shadow from any animated gif. I have already succeeded with that, but from some reason I cannot get it to work anymore - it simply gets stuck.

For example:

Code: Select all

convert "http://33.media.tumblr.com/d7a91abd8134f6bde1e8784e65ef6f3b/tumblr_n2ea6sNWHZ1rapzjmo1_500.gif" -resize 800\> -coalesce -write mpr:img -delete 0--1 \( mpr:img -gravity northwest -background white -extent 180%110% \) null: \( mpr:img -background '#5E5E59' -shadow 55x12-20-10  -virtual-pixel Transparent +distort AffineProjection "0.6,0,-0.6,0.2,%[fx:1.2*w],%[fx:0.7*h]" \) -background transparent  "./tumblr_n2ea6sNWHZ1rapzjmo1_500.gif"

Trying with verbose option shows it gets stuck somewhere in "Affine Distort, FX Equivelent:".

I'm on Ubuntu 14.04, tried versions 6.9.2-6 and 6.9.2-8
Any idea what the problem is?

Thanks, yakobom
yakobom
Posts: 27
Joined: 2015-10-27T22:40:37-07:00
Authentication code: 1151

Re: Converting animated gif with shadow gets stuck

Post by yakobom »

Embarrassing...

Code: Select all

-extent 180%110%
should be

Code: Select all

-extent 180x110%
Sorry guys...
Post Reply