Table of Contents

Class DrawableColor

Namespace
ImageMagick
Assembly
Magick.NET-Q16-AnyCPU.dll

Draws color on image using the current fill color, starting at specified position, and using specified paint method.

public sealed class DrawableColor : IDrawableColor, IDrawable
Inheritance
DrawableColor
Implements
IDrawableColor
IDrawable
Inherited Members

Constructors

DrawableColor(double, double, PaintMethod)

Initializes a new instance of the DrawableColor class.

public DrawableColor(double x, double y, PaintMethod paintMethod)

Parameters

x double

The X coordinate.

y double

The Y coordinate.

paintMethod PaintMethod

The paint method to use.

Properties

PaintMethod

Gets or sets the PaintMethod to use.

public PaintMethod PaintMethod { get; set; }

Property Value

PaintMethod

X

Gets or sets the X coordinate.

public double X { get; set; }

Property Value

double

Y

Gets or sets the Y coordinate.

public double Y { get; set; }

Property Value

double