文書の表示以前のリビジョンバックリンク文書の先頭へ この文書は読取専用です。文書のソースを閲覧することは可能ですが、変更はできません。もし変更したい場合は管理者に連絡してください。 ====== ImageMagick ====== ===== 2x2 画像 ===== * 画像はそれぞれ横幅 1024px * クレジット入れる * font は <code>convert -list font</code> で調べる <code>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</code> ===== 画像サイズ変更 ===== <code> convert -gravity South -font "Liberation-Serif-Italic" -geometry 1024x -annotate +440+10 "by @ten_forward" -pointsize 18 -fill ForestGreen img.jpg out.jpg </code> <code> convert -gravity SouthEast -font "Andale-Mono" -geometry 2048x -annotate +10+10 "by @ten_forward" -pointsize 32 -fill #C0DCC0 $f conv/$f </code> <code> convert -gravity SouthEast -font "Bradley-Hand-Bold" -geometry 2048x -annotate +10+10 "by @ten_forward" -pointsize 48 -fill #003300 $f conv/$f </code> ===== 図形描画 ===== hellolive <code> convert -draw 'rectangle 200,1640 490,2095' in out </code> ===== 切り抜き ===== hellolive <code> convert Pic02491.png -crop 1100x1987+192+154 test.png </code> ===== グレースケール変換 ===== <code> magick test.png -colorspace Gray gray_colorspace.png </code> imagemagick/imagemagick.txt 最終更新: 2024/05/06 12:47by tenforward