ImageMagick

  • 画像はそれぞれ横幅 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
convert -gravity SouthEast -font "Andale-Mono" -geometry 2048x -annotate +10+10 "by @ten_forward" -pointsize 32 -fill #C0DCC0 $f conv/$f
convert -gravity SouthEast -font "Bradley-Hand-Bold" -geometry 2048x -annotate +10+10 "by @ten_forward" -pointsize 48 -fill #003300 $f conv/$f

hellolive

convert -draw 'rectangle 200,1640 490,2095' in out

hellolive

convert Pic02491.png -crop 1100x1987+192+154 test.png
magick test.png -colorspace Gray gray_colorspace.png
  • imagemagick/imagemagick.txt
  • 最終更新: 2024/05/06 12:47
  • by tenforward