Magick++ API Incompatibility: Frame Attribute
Posted: 2007-02-06T19:27:48-07:00
The order of the arguments passed to Frame differ between the command line and Magick++.
On the command line, -frame is an image operator.
Syntax:
In the Magick++ API, frame is a method of the Image class.
Syntax:
The Outer-Bevel-Width and Inner-Bevel-Width arguments have been switched
On the command line, -frame is an image operator.
Syntax:
Code: Select all
-frame widthxheight{+-}outer-bevel-width{+-}inner-bevel-width
Syntax:
Code: Select all
frame(unsigned int width_, unsigned int height_, int innerBevel_ = 0, int outerBevel_ = 0)