ImageMagick
ImageMagick: Convert, Edit, Or Compose Bitmap Images¶
Install¶
ImageMagick: Install from Binary Distribution
Create image¶
- Canvas Creation -- IM v6 Examples
公式によるたくさんのコマンドサンプル - Imagemagick how to call colours
色の指定記法いろいろ
Example¶
$ convert -size 100x100 xc:#FF0000 red.png
TIPS¶
透明部分のあるPNGの背景を白にしてJPG変換¶
- command line - How can I convert a folder of .pngs to .jpgs while setting the background color? - Ask Ubuntu
- アンチエイリアスなし
$ mogrify -quality 100 -format jpg -fill "#FFFFFF" -opaque none *.png
- アンチエイリアスあり
PNGを10倍に拡大してアンチエイリアス有効でリサイズ - imagemagick - Replace transparency in PNG images with white background - Stack Overflow
$ convert image.png -background white -alpha remove white.png