C# 클래스 Svg.SvgRenderer

상속: IDisposable
파일 보기 프로젝트 열기: prepare/HTML-Renderer 1 사용 예제들

공개 메소드들

메소드 설명
Dispose ( ) : void
DrawImage ( Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit graphicsUnit ) : void
DrawImageUnscaled ( Image image, Point location ) : void
DrawPath ( Pen pen, GraphicsPath path ) : void
FillPath ( Brush brush, GraphicsPath path ) : void
FromGraphics ( Graphics graphics ) : SvgRenderer

Creates a new SvgRenderer from the specified Graphics.

FromImage ( Image image ) : SvgRenderer

Creates a new SvgRenderer from the specified Image.

MeasureString ( string text, Font font ) : SizeF
RotateTransform ( float fAngle ) : void
RotateTransform ( float fAngle, MatrixOrder order ) : void
Save ( ) : void
ScaleTransform ( float sx, float sy ) : void
ScaleTransform ( float sx, float sy, MatrixOrder order ) : void
SetClip ( Region region ) : void
TranslateTransform ( float dx, float dy ) : void
TranslateTransform ( float dx, float dy, MatrixOrder order ) : void

비공개 메소드들

메소드 설명
SvgRenderer ( ) : System

Initializes a new instance of the SvgRenderer class.

메소드 상세

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

DrawImage() 공개 메소드

public DrawImage ( Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit graphicsUnit ) : void
image Image
destRect System.Drawing.RectangleF
srcRect System.Drawing.RectangleF
graphicsUnit GraphicsUnit
리턴 void

DrawImageUnscaled() 공개 메소드

public DrawImageUnscaled ( Image image, Point location ) : void
image Image
location Point
리턴 void

DrawPath() 공개 메소드

public DrawPath ( Pen pen, GraphicsPath path ) : void
pen System.Drawing.Pen
path System.Drawing.Drawing2D.GraphicsPath
리턴 void

FillPath() 공개 메소드

public FillPath ( Brush brush, GraphicsPath path ) : void
brush System.Drawing.Brush
path System.Drawing.Drawing2D.GraphicsPath
리턴 void

FromGraphics() 공개 정적인 메소드

Creates a new SvgRenderer from the specified Graphics.
public static FromGraphics ( Graphics graphics ) : SvgRenderer
graphics System.Drawing.Graphics The to create the renderer from.
리턴 SvgRenderer

FromImage() 공개 정적인 메소드

Creates a new SvgRenderer from the specified Image.
public static FromImage ( Image image ) : SvgRenderer
image Image from which to create the new .
리턴 SvgRenderer

MeasureString() 공개 메소드

public MeasureString ( string text, Font font ) : SizeF
text string
font System.Drawing.Font
리턴 System.Drawing.SizeF

RotateTransform() 공개 메소드

public RotateTransform ( float fAngle ) : void
fAngle float
리턴 void

RotateTransform() 공개 메소드

public RotateTransform ( float fAngle, MatrixOrder order ) : void
fAngle float
order MatrixOrder
리턴 void

Save() 공개 메소드

public Save ( ) : void
리턴 void

ScaleTransform() 공개 메소드

public ScaleTransform ( float sx, float sy ) : void
sx float
sy float
리턴 void

ScaleTransform() 공개 메소드

public ScaleTransform ( float sx, float sy, MatrixOrder order ) : void
sx float
sy float
order MatrixOrder
리턴 void

SetClip() 공개 메소드

public SetClip ( Region region ) : void
region System.Drawing.Region
리턴 void

TranslateTransform() 공개 메소드

public TranslateTransform ( float dx, float dy ) : void
dx float
dy float
리턴 void

TranslateTransform() 공개 메소드

public TranslateTransform ( float dx, float dy, MatrixOrder order ) : void
dx float
dy float
order MatrixOrder
리턴 void