C# Class ImageMagick.DrawableText

Encapsulation of the DrawableCompositeImage object.
Inheritance: IDrawableText
Show file Open project: dlemstra/Magick.NET Class Usage Examples

Public Methods

Method Description
DrawableText ( double x, double y, string value )

Initializes a new instance of the DrawableText class.

IDrawable ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

Method Details

DrawableText() public method

Initializes a new instance of the DrawableText class.
public DrawableText ( double x, double y, string value )
x double The X coordinate.
y double The Y coordinate.
value string The text to draw.

IDrawable() public method

Draws this instance with the drawing wand.
public IDrawable ( IDrawingWand wand ) : void
wand IDrawingWand The want to draw on.
return void