7.08.2017

大量PNG圖去背轉GIF圖檔

1. 安裝 ImageMagick
(2.a 單轉檔, MJt1.png轉MJt1.gif)
>convert "MJt1.png" -transparent #ffffff "output\MJt1.gif"

2.b *.png去背(白色去背#ffffff)轉gif

>FOR %G IN ("*.png") DO convert "%G" -transparent #ffffffff "output\%G.gif"

==>會生成許多*.png.gif

3.用Windows PowerShell,將*.png.gif轉成*.gif
>Dir | Rename-Item -NewName { $_.name –eplace "png.gif", "gif" }

Note:在cmd下用ren *.png.gif *.gif無効…