Page 1 of 1

Trying to set compose:args through MagickWand API

Posted: 2009-10-11T11:41:52-07:00
by mkoppanen
Hello,

I am trying to set compose:args for DisplaceCompositeOp through the MagickWand API. No luck this far with following combos:

MagickSetImageProperty(magick_wand, "compose:args"
MagickSetImageProperty(magick_wand, "option:compose:args"

MagickSetOption(magick_wand, "compose:args"
MagickSetOption(magick_wand, "option:compose:args"

Any idea?

Re: Trying to set compose:args through MagickWand API

Posted: 2009-10-11T13:32:36-07:00
by magick
We need to add MagickSetImageArtifact() to the MagickWand API. Look for it in ImageMagick 6.5.7-0 Beta available by sometime tomorrow. Image artifacts are like properties except they are not exported.

Re: Trying to set compose:args through MagickWand API

Posted: 2009-10-12T15:36:33-07:00
by mkoppanen
Noticed that this change has made it's way in. Thank you!