C# 클래스 ImageMagick.DrawablePushPattern

indicates that subsequent commands up to a DrawablePopPattern command comprise the definition of a named pattern. The pattern space is assigned top left corner coordinates, a width and height, and becomes its own drawing space. Anything which can be drawn may be used in a pattern definition. Named patterns may be used as stroke or brush definitions.
상속: IDrawable
파일 보기 프로젝트 열기: dlemstra/Magick.NET

공개 메소드들

메소드 설명
DrawablePushPattern ( string id, double x, double y, double width, double height )

Initializes a new instance of the DrawablePushPattern class.

IDrawable ( IDrawingWand wand ) : void

Draws this instance with the drawing wand.

메소드 상세

DrawablePushPattern() 공개 메소드

Initializes a new instance of the DrawablePushPattern class.
public DrawablePushPattern ( string id, double x, double y, double width, double height )
id string The ID of the pattern.
x double The X coordinate.
y double The Y coordinate.
width double The width.
height double The height.

IDrawable() 공개 메소드

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