How to use -stereo inside a convert command (instead of composite) ?
Posted: 2018-02-15T12:50:24-07:00
Hi,
I am using this composite command to create a stereo image :
I'm searching for a way to use it inside a convert command (because I need to convert the colorspace, then the output format), and I would like to avoid having two separate commands.
So far, I've tested the following command-lines, without any success :
Is that possible ?
I am using this composite command to create a stereo image :
Code: Select all
composite -stereo +15 SOURCE.JPG SOURCE.JPG -composite DEST.JPG
So far, I've tested the following command-lines, without any success :
Code: Select all
convert SOURCE.JPG -write mpr:SrcImage +delete mpr:SrcImage mpr:SrcImage -composite -stereo +15 DEST.JPG
convert SOURCE.JPG -write mpr:SrcImage +delete mpr:SrcImage mpr:SrcImage -compose -define compose:args=stereo,+15 -composite DEST.JPG