Last active
December 8, 2015 03:11
-
-
Save arc279/93c4182b67a45d7e2c44 to your computer and use it in GitHub Desktop.
imagemagickで画像複数合成
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
#!/bin/bash | |
convert base.jpg \ | |
image1.png -geometry 100x100+142+142 -composite \ | |
image2.png -geometry 150x150+242+242 -composite \ | |
image3.png -geometry 200x200+342+342 -composite \ | |
out.jpg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment