Skip to content

Instantly share code, notes, and snippets.

@smison
Created September 4, 2014 11:58
Show Gist options
  • Save smison/542b0db0927e158356a4 to your computer and use it in GitHub Desktop.
Save smison/542b0db0927e158356a4 to your computer and use it in GitHub Desktop.
同じディレクトリのpng画像を縦に結合するbatファイル(http://qiita.com/smison/items/0bff938e6b4e4cc7b6be)
SETLOCAL enabledelayedexpansion
SET command=convert -append
for %%f in (*.png) do (
SET command=!command! %%f
)
SET command=%command% output.png
call %command%
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment