merging 200 images into a single file
Posted: 2011-07-20T12:13:47-07:00
I would like to run a long long command for merging 200 images into a single file. The command I am using at the moment is:
The problem I am encountering now is that the command cannot be more than 8192 character long. Can you help me find a fix for this problem? As I understand I should use a text file to provide the list. But how could I do it?
Also, is this convert command compatible with multiple convert sub-commands? I mean:
Does it make sense?
Code: Select all
convert a.png b.png c.png d.png .... .... .... -background transparent -flatten out.png
Also, is this convert command compatible with multiple convert sub-commands? I mean:
Code: Select all
convert a b c -> o1
convert d e f -> o2
convert o1 o2 -> o