C# Class ImageMagick.DrawingWand

Inheritance: IDisposable
Show file Open project: dlemstra/Magick.NET Class Usage Examples

Public Methods

Method Description
Affine ( double scaleX, double scaleY, double shearX, double shearY, double translateX, double translateY ) : void
Alpha ( double x, double y, PaintMethod paintMethod ) : void
Arc ( double startX, double startY, double endX, double endY, double startDegrees, double endDegrees ) : void
Bezier ( IList coordinates ) : void
BorderColor ( MagickColor color ) : void
Circle ( double originX, double originY, double perimeterX, double perimeterY ) : void
ClipPath ( string value ) : void
ClipRule ( FillRule value ) : void
ClipUnits ( ClipPathUnit value ) : void
Color ( double x, double y, PaintMethod paintMethod ) : void
Composite ( double x, double y, double width, double height, CompositeOperator compositeOperator, MagickImage image ) : void
Density ( PointD value ) : void
Dispose ( ) : void
Draw ( IEnumerable drawables ) : void
DrawingWand ( MagickImage image ) : System
Ellipse ( double originX, double originY, double radiusX, double radiusY, double startDegrees, double endDegrees ) : void
FillColor ( MagickColor color ) : void
FillOpacity ( double value ) : void
FillPatternUrl ( string url ) : void
FillRule ( FillRule value ) : void
Font ( string fontName ) : void
FontFamily ( string family, FontStyleType style, FontWeight weight, FontStretch stretch ) : void
FontPointSize ( double value ) : void
Gravity ( Gravity value ) : void
Line ( double startX, double startY, double endX, double endY ) : void
PathArcAbs ( IEnumerable pathArcs ) : void
PathArcRel ( IEnumerable pathArcs ) : void
PathClose ( ) : void
PathCurveToAbs ( PointD controlPointStart, PointD controlPointEnd, PointD endPoint ) : void
PathCurveToRel ( PointD controlPointStart, PointD controlPointEnd, PointD endPoint ) : void
PathFinish ( ) : void
PathLineToAbs ( IEnumerable coordinates ) : void
PathLineToHorizontalAbs ( double x ) : void
PathLineToHorizontalRel ( double x ) : void
PathLineToRel ( IEnumerable coordinates ) : void
PathLineToVerticalAbs ( double y ) : void
PathLineToVerticalRel ( double y ) : void
PathMoveToAbs ( double x, double y ) : void
PathMoveToRel ( double x, double y ) : void
PathQuadraticCurveToAbs ( PointD controlPoint, PointD endPoint ) : void
PathQuadraticCurveToRel ( PointD controlPoint, PointD endPoint ) : void
PathSmoothCurveToAbs ( PointD controlPoint, PointD endPoint ) : void
PathSmoothCurveToRel ( PointD controlPoint, PointD endPoint ) : void
PathSmoothQuadraticCurveToAbs ( PointD endPoint ) : void
PathSmoothQuadraticCurveToRel ( PointD endPoint ) : void
PathStart ( ) : void
Point ( double x, double y ) : void
Polygon ( IList coordinates ) : void
Polyline ( IList coordinates ) : void
PopClipPath ( ) : void
PopGraphicContext ( ) : void
PopPattern ( ) : void
PushClipPath ( string clipPath ) : void
PushGraphicContext ( ) : void
PushPattern ( string id, double x, double y, double width, double height ) : void
Rectangle ( double upperLeftX, double upperLeftY, double lowerRightX, double lowerRightY ) : void
Rotation ( double angle ) : void
RoundRectangle ( double centerX, double centerY, double width, double height, double cornerWidth, double cornerHeight ) : void
Scaling ( double x, double y ) : void
SkewX ( double angle ) : void
SkewY ( double angle ) : void
StrokeAntialias ( bool isEnabled ) : void
StrokeColor ( MagickColor color ) : void
StrokeDashArray ( double dash ) : void
StrokeDashOffset ( double value ) : void
StrokeLineCap ( LineCap value ) : void
StrokeLineJoin ( LineJoin value ) : void
StrokeMiterLimit ( int value ) : void
StrokeOpacity ( double value ) : void
StrokePatternUrl ( string url ) : void
StrokeWidth ( double value ) : void
Text ( double x, double y, string value ) : void
TextAlignment ( TextAlignment value ) : void
TextAntialias ( bool isEnabled ) : void
TextDecoration ( TextDecoration value ) : void
TextDirection ( TextDirection value ) : void
TextEncoding ( Encoding value ) : void
TextInterlineSpacing ( double spacing ) : void
TextInterwordSpacing ( double spacing ) : void
TextKerning ( double value ) : void
TextUnderColor ( MagickColor color ) : void
Translation ( double x, double y ) : void
Viewbox ( double upperLeftX, double upperLeftY, double lowerRightX, double lowerRightY ) : void

Private Methods

Method Description
GetInstance ( DrawingWand instance ) : IntPtr

Method Details

Affine() public method

public Affine ( double scaleX, double scaleY, double shearX, double shearY, double translateX, double translateY ) : void
scaleX double
scaleY double
shearX double
shearY double
translateX double
translateY double
return void

Alpha() public method

public Alpha ( double x, double y, PaintMethod paintMethod ) : void
x double
y double
paintMethod PaintMethod
return void

Arc() public method

public Arc ( double startX, double startY, double endX, double endY, double startDegrees, double endDegrees ) : void
startX double
startY double
endX double
endY double
startDegrees double
endDegrees double
return void

Bezier() public method

public Bezier ( IList coordinates ) : void
coordinates IList
return void

BorderColor() public method

public BorderColor ( MagickColor color ) : void
color MagickColor
return void

Circle() public method

public Circle ( double originX, double originY, double perimeterX, double perimeterY ) : void
originX double
originY double
perimeterX double
perimeterY double
return void

ClipPath() public method

public ClipPath ( string value ) : void
value string
return void

ClipRule() public method

public ClipRule ( FillRule value ) : void
value FillRule
return void

ClipUnits() public method

public ClipUnits ( ClipPathUnit value ) : void
value ClipPathUnit
return void

Color() public method

public Color ( double x, double y, PaintMethod paintMethod ) : void
x double
y double
paintMethod PaintMethod
return void

Composite() public method

public Composite ( double x, double y, double width, double height, CompositeOperator compositeOperator, MagickImage image ) : void
x double
y double
width double
height double
compositeOperator CompositeOperator
image MagickImage
return void

Density() public method

public Density ( PointD value ) : void
value PointD
return void

Dispose() public method

public Dispose ( ) : void
return void

Draw() public method

public Draw ( IEnumerable drawables ) : void
drawables IEnumerable
return void

DrawingWand() public method

public DrawingWand ( MagickImage image ) : System
image MagickImage
return System

Ellipse() public method

public Ellipse ( double originX, double originY, double radiusX, double radiusY, double startDegrees, double endDegrees ) : void
originX double
originY double
radiusX double
radiusY double
startDegrees double
endDegrees double
return void

FillColor() public method

public FillColor ( MagickColor color ) : void
color MagickColor
return void

FillOpacity() public method

public FillOpacity ( double value ) : void
value double
return void

FillPatternUrl() public method

public FillPatternUrl ( string url ) : void
url string
return void

FillRule() public method

public FillRule ( FillRule value ) : void
value FillRule
return void

Font() public method

public Font ( string fontName ) : void
fontName string
return void

FontFamily() public method

public FontFamily ( string family, FontStyleType style, FontWeight weight, FontStretch stretch ) : void
family string
style FontStyleType
weight FontWeight
stretch FontStretch
return void

FontPointSize() public method

public FontPointSize ( double value ) : void
value double
return void

Gravity() public method

public Gravity ( Gravity value ) : void
value Gravity
return void

Line() public method

public Line ( double startX, double startY, double endX, double endY ) : void
startX double
startY double
endX double
endY double
return void

PathArcAbs() public method

public PathArcAbs ( IEnumerable pathArcs ) : void
pathArcs IEnumerable
return void

PathArcRel() public method

public PathArcRel ( IEnumerable pathArcs ) : void
pathArcs IEnumerable
return void

PathClose() public method

public PathClose ( ) : void
return void

PathCurveToAbs() public method

public PathCurveToAbs ( PointD controlPointStart, PointD controlPointEnd, PointD endPoint ) : void
controlPointStart PointD
controlPointEnd PointD
endPoint PointD
return void

PathCurveToRel() public method

public PathCurveToRel ( PointD controlPointStart, PointD controlPointEnd, PointD endPoint ) : void
controlPointStart PointD
controlPointEnd PointD
endPoint PointD
return void

PathFinish() public method

public PathFinish ( ) : void
return void

PathLineToAbs() public method

public PathLineToAbs ( IEnumerable coordinates ) : void
coordinates IEnumerable
return void

PathLineToHorizontalAbs() public method

public PathLineToHorizontalAbs ( double x ) : void
x double
return void

PathLineToHorizontalRel() public method

public PathLineToHorizontalRel ( double x ) : void
x double
return void

PathLineToRel() public method

public PathLineToRel ( IEnumerable coordinates ) : void
coordinates IEnumerable
return void

PathLineToVerticalAbs() public method

public PathLineToVerticalAbs ( double y ) : void
y double
return void

PathLineToVerticalRel() public method

public PathLineToVerticalRel ( double y ) : void
y double
return void

PathMoveToAbs() public method

public PathMoveToAbs ( double x, double y ) : void
x double
y double
return void

PathMoveToRel() public method

public PathMoveToRel ( double x, double y ) : void
x double
y double
return void

PathQuadraticCurveToAbs() public method

public PathQuadraticCurveToAbs ( PointD controlPoint, PointD endPoint ) : void
controlPoint PointD
endPoint PointD
return void

PathQuadraticCurveToRel() public method

public PathQuadraticCurveToRel ( PointD controlPoint, PointD endPoint ) : void
controlPoint PointD
endPoint PointD
return void

PathSmoothCurveToAbs() public method

public PathSmoothCurveToAbs ( PointD controlPoint, PointD endPoint ) : void
controlPoint PointD
endPoint PointD
return void

PathSmoothCurveToRel() public method

public PathSmoothCurveToRel ( PointD controlPoint, PointD endPoint ) : void
controlPoint PointD
endPoint PointD
return void

PathSmoothQuadraticCurveToAbs() public method

public PathSmoothQuadraticCurveToAbs ( PointD endPoint ) : void
endPoint PointD
return void

PathSmoothQuadraticCurveToRel() public method

public PathSmoothQuadraticCurveToRel ( PointD endPoint ) : void
endPoint PointD
return void

PathStart() public method

public PathStart ( ) : void
return void

Point() public method

public Point ( double x, double y ) : void
x double
y double
return void

Polygon() public method

public Polygon ( IList coordinates ) : void
coordinates IList
return void

Polyline() public method

public Polyline ( IList coordinates ) : void
coordinates IList
return void

PopClipPath() public method

public PopClipPath ( ) : void
return void

PopGraphicContext() public method

public PopGraphicContext ( ) : void
return void

PopPattern() public method

public PopPattern ( ) : void
return void

PushClipPath() public method

public PushClipPath ( string clipPath ) : void
clipPath string
return void

PushGraphicContext() public method

public PushGraphicContext ( ) : void
return void

PushPattern() public method

public PushPattern ( string id, double x, double y, double width, double height ) : void
id string
x double
y double
width double
height double
return void

Rectangle() public method

public Rectangle ( double upperLeftX, double upperLeftY, double lowerRightX, double lowerRightY ) : void
upperLeftX double
upperLeftY double
lowerRightX double
lowerRightY double
return void

Rotation() public method

public Rotation ( double angle ) : void
angle double
return void

RoundRectangle() public method

public RoundRectangle ( double centerX, double centerY, double width, double height, double cornerWidth, double cornerHeight ) : void
centerX double
centerY double
width double
height double
cornerWidth double
cornerHeight double
return void

Scaling() public method

public Scaling ( double x, double y ) : void
x double
y double
return void

SkewX() public method

public SkewX ( double angle ) : void
angle double
return void

SkewY() public method

public SkewY ( double angle ) : void
angle double
return void

StrokeAntialias() public method

public StrokeAntialias ( bool isEnabled ) : void
isEnabled bool
return void

StrokeColor() public method

public StrokeColor ( MagickColor color ) : void
color MagickColor
return void

StrokeDashArray() public method

public StrokeDashArray ( double dash ) : void
dash double
return void

StrokeDashOffset() public method

public StrokeDashOffset ( double value ) : void
value double
return void

StrokeLineCap() public method

public StrokeLineCap ( LineCap value ) : void
value LineCap
return void

StrokeLineJoin() public method

public StrokeLineJoin ( LineJoin value ) : void
value LineJoin
return void

StrokeMiterLimit() public method

public StrokeMiterLimit ( int value ) : void
value int
return void

StrokeOpacity() public method

public StrokeOpacity ( double value ) : void
value double
return void

StrokePatternUrl() public method

public StrokePatternUrl ( string url ) : void
url string
return void

StrokeWidth() public method

public StrokeWidth ( double value ) : void
value double
return void

Text() public method

public Text ( double x, double y, string value ) : void
x double
y double
value string
return void

TextAlignment() public method

public TextAlignment ( TextAlignment value ) : void
value TextAlignment
return void

TextAntialias() public method

public TextAntialias ( bool isEnabled ) : void
isEnabled bool
return void

TextDecoration() public method

public TextDecoration ( TextDecoration value ) : void
value TextDecoration
return void

TextDirection() public method

public TextDirection ( TextDirection value ) : void
value TextDirection
return void

TextEncoding() public method

public TextEncoding ( Encoding value ) : void
value Encoding
return void

TextInterlineSpacing() public method

public TextInterlineSpacing ( double spacing ) : void
spacing double
return void

TextInterwordSpacing() public method

public TextInterwordSpacing ( double spacing ) : void
spacing double
return void

TextKerning() public method

public TextKerning ( double value ) : void
value double
return void

TextUnderColor() public method

public TextUnderColor ( MagickColor color ) : void
color MagickColor
return void

Translation() public method

public Translation ( double x, double y ) : void
x double
y double
return void

Viewbox() public method

public Viewbox ( double upperLeftX, double upperLeftY, double lowerRightX, double lowerRightY ) : void
upperLeftX double
upperLeftY double
lowerRightX double
lowerRightY double
return void