Search found 237 matches

by agriz
2016-08-31T01:01:01-07:00
Forum: Users
Topic: optimizeplus - convert: images are not the same size
Replies: 6
Views: 6404

Re: optimizeplus - convert: images are not the same size

This one adds text all the time visible. I want the text to be the very last frame showing details
by agriz
2016-08-30T19:26:05-07:00
Forum: Users
Topic: ImageMagick EXEC return value in negative
Replies: 6
Views: 5808

Re: ImageMagick EXEC return value in negative

I will try to change the memory limit of php and let you know sir
by agriz
2016-08-30T19:24:03-07:00
Forum: Users
Topic: optimizeplus - convert: images are not the same size
Replies: 6
Views: 6404

Re: optimizeplus - convert: images are not the same size

http://i.giphy.com/3oz8xHmNNacaHJyNm8.gif I extracted the frames of this gif and convert \( frame-0.png \) \( frmae-1.png \) -size 400x250 xc:none -box white -pointsize 22 -gravity south -draw "text 0,0 'text'" -set delay 30 -loop 0 -layers OptimizePlus output.gif images are not the same ...
by agriz
2016-08-30T19:09:03-07:00
Forum: Users
Topic: optimizeplus - convert: images are not the same size
Replies: 6
Views: 6404

Re: optimizeplus - convert: images are not the same size

IM 7.0.2

http://www.imagemagick.org/Usage/draw/#text
-box text-undercolor fill color for font bounding box

I just used that from here.
by agriz
2016-08-30T18:57:49-07:00
Forum: Users
Topic: ImageMagick EXEC return value in negative
Replies: 6
Views: 5808

Re: ImageMagick EXEC return value in negative

exec("convert \( *-1.png +append -flatten \) \( *-2.png +append -flatten \) \( *-3.png +append -flatten \) +append output.png 2>&1", $output, $return); This is the single command. It fails convert \( *-1.png +append -flatten \) tmp_1.png convert \( *-2.png +append -flatten \) tmp_2.pn...
by agriz
2016-08-30T09:55:53-07:00
Forum: Users
Topic: optimizeplus - convert: images are not the same size
Replies: 6
Views: 6404

optimizeplus - convert: images are not the same size

convert image_1.png image_2.png image_3.png \( -size 300x300 xc:none -box white -gravity south -draw "text 0,0 'text'" \) -set delay 150 -layers OptimizePlus -loop 1 finalized.gif -- all images are 300x300 If i use OptimizePlus it throws the error. [ convert: images are not the same size ...
by agriz
2016-08-30T09:50:57-07:00
Forum: Users
Topic: ImageMagick EXEC return value in negative
Replies: 6
Views: 5808

Re: ImageMagick EXEC return value in negative

Few Images works. Tmp directory works. If i join the command to single command, it fails.
by agriz
2016-08-30T07:38:51-07:00
Forum: Users
Topic: ImageMagick EXEC return value in negative
Replies: 6
Views: 5808

ImageMagick EXEC return value in negative

exec("convert \( *-1.png +append -flatten \) \( *-2.png +append -flatten \) \( *-3.png +append -flatten \) +append output.png 2>&1", $output, $return); //edit //previous one was working. //This one is causing problem. //Approximately, about 70 images to be loaded. But throwing that ne...
by agriz
2016-08-28T18:48:13-07:00
Forum: Users
Topic: png to gif - Transparency
Replies: 11
Views: 12366

Re: png to gif - Transparency

Ok sir. I updated to IM 7. It is working good.
by agriz
2016-08-28T03:37:05-07:00
Forum: Users
Topic: How to install ImageMagick in centos 7
Replies: 0
Views: 11946

How to install ImageMagick in centos 7

I tried to install imagemagick. The yum version is little old. rpm -Uvh ImageMagick-7.0.2-9.x86_64.rpm error: Failed dependencies: ImageMagick-libs = 7.0.2-9 is needed by ImageMagick-7.0.2-9.x86_64 libMagickCore-7.Q16HDRI.so.0()(64bit) is needed by ImageMagick-7.0.2-9.x86_64 libMagickWand-7.Q16HDRI....
by agriz
2016-08-28T02:08:38-07:00
Forum: Users
Topic: png to gif - Transparency
Replies: 11
Views: 12366

Re: png to gif - Transparency

If i use imagemagick 7.0, and if i create gif by appending few jpg images, i get the right image size If i use imagemagick 6.7 and if i create gif by appending the same jpg images, i get the wrong image size. Sir, if i use identify -verbose info: image.gif //if created in 6.7 - Should be about 300 [...
by agriz
2016-08-27T20:20:31-07:00
Forum: Users
Topic: png to gif - Transparency
Replies: 11
Views: 12366

Re: png to gif - Transparency

Is there no way to use png to generate animated gif? When i use few layers of a.png with shadow, it becomes like the above image.
by agriz
2016-08-27T20:09:02-07:00
Forum: Users
Topic: png to gif - Transparency
Replies: 11
Views: 12366

Re: png to gif - Transparency

convert -size 70x60 xc:none -font Candice -pointsize 50 \ -fill black -annotate +10+45 'A' -channel RGBA -blur 0x5 \ -fill white -stroke black -draw "text 5,40 'A'" a.gif https://s15.postimg.org/4oxt85rhj/image.gif convert -size 70x60 xc:none -font Candice -pointsize 50 \ -fill black -ann...
by agriz
2016-08-27T20:05:54-07:00
Forum: Users
Topic: png to gif - Transparency
Replies: 11
Views: 12366

Re: png to gif - Transparency

It is not working sir
ImageMagick-6.7.8.9-13
by agriz
2016-08-27T09:30:44-07:00
Forum: Users
Topic: png to gif - Transparency
Replies: 11
Views: 12366

png to gif - Transparency

Code: Select all

convert a.png -background LightSteelBlue -flatten  a_overlay.gif
This was the example code which i found in imagemagick website.
Without using this -background LightsteelBlue, can't we achieve this effect?