imagemagick:imagemagick

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
imagemagick:imagemagick [2019/09/01 15:54] – [2x2 画像] tenforwardimagemagick:imagemagick [2024/05/06 12:47] (現在) tenforward
行 4: 行 4:
   * 画像はそれぞれ横幅 1024px   * 画像はそれぞれ横幅 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>
  
-<code>montage -tile 2x2 -geometry 1024x -font "Liberation-Serif-Italic" -annotate +440+10 'by @ten_forward' -pointsize 18 -fill ForestGreen -gravity South P1000243.jpg P1000245.jpg P1000246.jpg P1000530.jpg exy01.jpg</code> 
  
  • imagemagick/imagemagick.1567353241.txt.gz
  • 最終更新: 2019/09/01 15:54
  • by tenforward