Skip to content

Instantly share code, notes, and snippets.

@arc279
Last active December 8, 2015 03:11
Show Gist options
  • Save arc279/93c4182b67a45d7e2c44 to your computer and use it in GitHub Desktop.
Save arc279/93c4182b67a45d7e2c44 to your computer and use it in GitHub Desktop.
imagemagickで画像複数合成
#!/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