Page 1 of 1
why the newer version command works not well ?
Posted: 2015-04-16T01:50:51-07:00
by zxsz4084
Dear Niu Biren:
old version :
Version: ImageMagick 6.2.8 05/07/12 Q16 file:/usr/share/ImageMagick-6.2.8/doc/index.html
convert lengtu.gif -coalesce -bordercolor none -border 0 -sample '200x200' -layers Optimize lengtu_old.gif
works well
new version:
Version: ImageMagick 6.9.1-1 Q16 x86_64 2015-04-14
http://www.imagemagick.org
/usr/local/ImageMagick/bin/convert lengtu.gif -coalesce -bordercolor none -border 0 -sample '200x200' -layers Optimize lengtu_new.gif
works not well
why ?How to deal?
Re: why the newer version command works not well ?
Posted: 2015-04-16T03:15:03-07:00
by snibgo
Insert "-background None" before "-coalesce".
Code: Select all
convert lengtu.gif -background None -coalesce -bordercolor None -border 0 -sample 200x200 -layers Optimize lengtu_new.gif
Re: why the newer version command works not well ?
Posted: 2015-04-16T03:56:16-07:00
by zxsz4084
snibgo wrote:Insert "-background None" before "-coalesce".
Code: Select all
convert lengtu.gif -background None -coalesce -bordercolor None -border 0 -sample 200x200 -layers Optimize lengtu_new.gif
Thanks very much。
Re: why the newer version command works not well ?
Posted: 2015-04-16T05:32:51-07:00
by zxsz4084
zxsz4084 wrote:snibgo wrote:Insert "-background None" before "-coalesce".
Code: Select all
convert lengtu.gif -background None -coalesce -bordercolor None -border 0 -sample 200x200 -layers Optimize lengtu_new.gif
Thanks very much。
I use php
if I use "$_FILES['file']['tmp_name']" as pic source ,it works not well
/usr/local/ImageMagick/bin/convert /tmp/phpECumC5 -background none -coalesce -bordercolor none -border 0 -sample '200x200' -layers Optimize /mnt/i/live/2015/04/16/19/1001v1429184079887116990_s.gif
if read "$_FILES['file']['tmp_name']" and write to another tmp dir like "/da0/logs/tmpPic/xxx.tmp",and use xxx.tmp as source, it works well.
/usr/local/ImageMagick/bin/convert /da0/logs/tmpPic/1429184786930266308.tmp -background none -coalesce -bordercolor none -border 0 -sample '200x200' -layers Optimize /mnt/i/live/2015/04/16/19/1001v1429184786929984933_s.gif
old version works well both "/tmp/xxxx" and "/da0/logs/tmpPic/xxx.tmp"
So I am very eggache... Have you see problems like this ?
Re: why the newer version command works not well ?
Posted: 2015-04-17T00:34:19-07:00
by zxsz4084
maybe it still works not well sometimes。
the orignal pic:
new version command: works not well
-bash-3.2$ /usr/local/ImageMagick/bin/convert tuzi3.gif -background none -coalesce -bordercolor none -border 0 -sample '200x200' -layers Optimize tuzi3_new.gif
old version command: works well
-bash-3.2$ convert tuzi3.gif -coalesce -bordercolor none -border 0 -sample '200x200' -layers Optimize tuzi3_old.gif
convert: geometry does not contain image `tuzi3.gif'.
-bash-3.2$ ll tuzi3*
-rw-r--r-- 1 www www 39769 Apr 17 15:17 tuzi3.gif
-rw-r--r-- 1 www www 45027 Apr 17 15:26 tuzi3_new.gif
-rw-r--r-- 1 www www 41655 Apr 17 15:26 tuzi3_old.gif
Re: why the newer version command works not well ?
Posted: 2015-04-17T03:01:56-07:00
by magick
We will investigate this problem soon and report back. Stand by...
Re: why the newer version command works not well ?
Posted: 2015-04-24T00:41:58-07:00
by zxsz4084
magick wrote:We will investigate this problem soon and report back. Stand by...
Dear admin:
I am waiting for your coming back soon ...
Re: why the newer version command works not well ?
Posted: 2015-04-24T03:22:55-07:00
by magick
Its on our list of problems to fix. We do not yet have an ETA on the solution.