Page 1 of 1

How to use -stereo inside a convert command (instead of composite) ?

Posted: 2018-02-15T12:50:24-07:00
by Alexvb6
Hi,

I am using this composite command to create a stereo image :

Code: Select all

composite -stereo +15 SOURCE.JPG SOURCE.JPG -composite DEST.JPG
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 :

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
Is that possible ?

Re: How to use -stereo inside a convert command (instead of composite) ?

Posted: 2018-02-15T14:22:40-07:00
by fmw42