Last active
July 25, 2022 15:18
-
-
Save yusuke024/ab41d26fb785a9a9c48671728d8037a7 to your computer and use it in GitHub Desktop.
ImageMagick Examples
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Append image horizontally | |
magick image1.png image2.png +append -gravity center -undercolor clear out.png | |
# Add annotation | |
magick -font helvetica -gravity north -fill red -undercolor white -pointsize 24 -annotate +0+8 image.png "Text" out.png | |
# Put screenshots in bezel | |
magick -background none -gravity center screenshot.png -extent 1400x2700 bezel.png -composite out.png |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment