Trying to set compose:args through MagickWand API

The MagickWand interface is a new high-level C API interface to ImageMagick core methods. We discourage the use of the core methods and encourage the use of this API instead. Post MagickWand questions, bug reports, and suggestions to this forum.
Post Reply
mkoppanen
Posts: 309
Joined: 2007-06-09T07:06:32-07:00

Trying to set compose:args through MagickWand API

Post 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?
Mikko Koppanen
My blog: http://valokuva.org
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Trying to set compose:args through MagickWand API

Post 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.
mkoppanen
Posts: 309
Joined: 2007-06-09T07:06:32-07:00

Re: Trying to set compose:args through MagickWand API

Post by mkoppanen »

Noticed that this change has made it's way in. Thank you!
Mikko Koppanen
My blog: http://valokuva.org
Post Reply