文書の過去の版を表示しています。
ImageMagick
2x2 画像
- 画像はそれぞれ横幅 1024px
- クレジット入れる
- font は
convert -list font
で調べる
montage \ -tile 2x2 \ -geometry 1024x \ -font "Liberation-Serif-Italic" \ -annotate +440+10 'by @ten_forward' \ -pointsize 18 \ -fill ForestGreen \ -gravity South \ 1.jpg 2.jpg 3.jpg 4.jpg out.jpg
画像サイズ変更
convert -gravity South -font "Liberation-Serif-Italic" -geometry 1024x -annotate +440+10 "by @ten_forward" -pointsize 18 -fill ForestGreen img.jpg out.jpg
図形描画
hellolive
convert -draw 'rectangle 200,1640 490,2095' in out
切り抜き
hellolive
convert Pic02491.png -crop 1100x1987+192+154 test.png