C# Class ImageMagick.DrawableComposite

Encapsulation of the DrawableCompositeImage object.
Inheritance: IDrawable
Show file Open project: dlemstra/Magick.NET

Public Methods

Method Description
DrawableComposite ( MagickGeometry offset, CompositeOperator compose, MagickImage image )

Initializes a new instance of the DrawableComposite class.

DrawableComposite ( MagickGeometry offset, MagickImage image )

Initializes a new instance of the DrawableComposite class.

DrawableComposite ( double x, double y, CompositeOperator compose, MagickImage image )

Initializes a new instance of the DrawableComposite class.

DrawableComposite ( double x, double y, MagickImage image )

Initializes a new instance of the DrawableComposite class.

Private Methods

Method Description
DrawableComposite ( MagickImage image )
IDrawable ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

Method Details

DrawableComposite() public method

Initializes a new instance of the DrawableComposite class.
public DrawableComposite ( MagickGeometry offset, CompositeOperator compose, MagickImage image )
offset MagickGeometry The offset from origin.
compose CompositeOperator The algorithm to use.
image MagickImage The image to draw.

DrawableComposite() public method

Initializes a new instance of the DrawableComposite class.
public DrawableComposite ( MagickGeometry offset, MagickImage image )
offset MagickGeometry The offset from origin.
image MagickImage The image to draw.

DrawableComposite() public method

Initializes a new instance of the DrawableComposite class.
public DrawableComposite ( double x, double y, CompositeOperator compose, MagickImage image )
x double The X coordinate.
y double The Y coordinate.
compose CompositeOperator The algorithm to use.
image MagickImage The image to draw.

DrawableComposite() public method

Initializes a new instance of the DrawableComposite class.
public DrawableComposite ( double x, double y, MagickImage image )
x double The X coordinate.
y double The Y coordinate.
image MagickImage The image to draw.