[SOLVED] Extract layers from PSD and merge together
Posted: 2018-08-08T08:05:30-07:00
Hi community,
I want to extract layers from the test.psd and merge them with the same result together again.
To get the layers I have done the following:
Output:
To extract them:
And now I want to put the whole thing back together, but i just don't get it.
So how can I create the test.psd if I only would have test1.psd and test1.psd and the information from the first command ( So that the picture has a size of 1000x1000 and how the two levels are positioned )
Many thanks for your help!
Resources:
http://buzzram.de/img/uploads/test.psd
http://buzzram.de/img/uploads/test1.psd
http://buzzram.de/img/uploads/test2.psd
I want to extract layers from the test.psd and merge them with the same result together again.
To get the layers I have done the following:
Code: Select all
identify -verbose -format "label:%l,geometry:%g\n" test.psd
Code: Select all
label:,geometry:1000x1000+0+0
label:eins,geometry:233x318+54+58
label:zwei,geometry:413x412+585+80
Code: Select all
convert test.psd[1] -page +0+0 test1.psd
convert test.psd[2] -page +0+0 test2.psd
So how can I create the test.psd if I only would have test1.psd and test1.psd and the information from the first command ( So that the picture has a size of 1000x1000 and how the two levels are positioned )
Many thanks for your help!
Resources:
http://buzzram.de/img/uploads/test.psd
http://buzzram.de/img/uploads/test1.psd
http://buzzram.de/img/uploads/test2.psd