Mathematica中文论坛-非官方

标题: 豆粑粑 convert png to gif [打印本页]

作者: meatball1982    时间: 2020-3-24 14:26
标题: 豆粑粑 convert png to gif
本帖最后由 meatball1982 于 2020-3-24 18:46 编辑

I have 10 png file, named as    a00.png a01.png a02.png ....a09.png



you need the "ImageMagick" first
Mac install
  1. brew install ImageMagick
复制代码



  1. mogrify -resize 600x350 *.png
  2. convert -delay 100 *.png -loop 0 out.gif
复制代码


mogrify  is used for resize the png file.
convert is used for combine the png file.


some times , you have a00.png, b00.png a01.png b01.png ,... a09.png, b09.png
you want to combine a00.png b00.png into c00.png.
then generate the all_c.gif

  1. for((i=0;i<=9;i++))
  2. do
  3.         montage -geometry 500 a0$i.png b0$i.png c0$i.png
  4. done
复制代码





作者: meatball1982    时间: 2023-9-17 09:35
现在,有gdp.gif 和gtp.gif
想平着摆(side by side)
思路是,各自分成单frame的图像,并排放,然后再合在一起。

  1. convert gdp.gif -coalesce a-%04d.gif                         # separate frames of 1.gif
  2. convert gtp.gif -coalesce b-%04d.gif                         # separate frames of 2.gif
  3. for(( i=0; i<10; i++))
  4. do
  5.         echo $i
  6.         convert a-000$i.gif b-000${i}.gif +append c-000${i}.gif
  7. done

  8. convert -loop 0 -delay 40 c-*.gif result40.gif
复制代码







欢迎光临 Mathematica中文论坛-非官方 (http://ilovemathematica.com/) Powered by Discuz! X3.2