Created
September 4, 2014 11:58
-
-
Save smison/542b0db0927e158356a4 to your computer and use it in GitHub Desktop.
同じディレクトリのpng画像を縦に結合するbatファイル(http://qiita.com/smison/items/0bff938e6b4e4cc7b6be)
This file contains hidden or 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
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