anaglyph picture

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
stefan.l

anaglyph picture

Post by stefan.l »

Hi all ImageMagick users,

I'm trying to do some anaglyph pictures with ImageMagick.
Does anybody have already experienced this ?

Thank you for your helps.

kind regards.

Stefan
el_supremo
Posts: 1015
Joined: 2005-03-21T21:16:57-07:00

Re: anaglyph picture

Post by el_supremo »

I've done this. On the command line you use composite (not convert):

Code: Select all

composite left.jpg right.jpg -stereo anaglyph.jpg
In MagickWand (in C) you would use

Code: Select all

stereo_wand = MagickStereoImage(left_wand,right_wand);
Pete
Post Reply