Skip to content

ImageMagick 覚書 & スクリプト集

Notifications You must be signed in to change notification settings

kissge/imagemagick-friends

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

ImageMagick 覚書

画像を横に並べて一つの画像にする

montage -mode Concatenate *.jpg result.jpg

SVG を透過 PNG に変換する

convert -background none [-density xxx] input.svg output.png

# どの色の透明にしたいか細かく指定したい場合
convert -background 'rgba(255, 255, 255, 0)' [-density xxx] input.svg output.png

画像の上下左右にある白色のマージンを自動で削除する

convert input.png -trim output.png

画像の上下または左右にマージンをつけることで指定の縦横比にする

👉 scripts/add-margin-to-ratio.sh

add-margin-to-ratio.sh input.png output.png 100 33.33

画像の差分をビフォーアフターのアニメーションで分かりやすく示す

👉 scripts/diff.sh

diff.sh before.png after.png diff.png

関連:Web ページのスクリーンショットを撮る

firefox --screenshot "$PWD"/output.png https://www.legalscape.jp/
google-chrome --headless --screenshot=output.png https://www.legalscape.jp/

画像を円に切り抜く

👉 scripts/crop-to-circle.sh

crop-to-circle.sh input.png [output.png]

入力が正方形でない場合、出力は楕円形になる

About

ImageMagick 覚書 & スクリプト集

Topics

Resources

Stars

Watchers

Forks

Languages