C# Class Svg.SvgRenderer

Inheritance: IDisposable
Afficher le fichier Open project: prepare/HTML-Renderer Class Usage Examples

Méthodes publiques

Méthode Description
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

Private Methods

Méthode Description
SvgRenderer ( ) : System

Initializes a new instance of the SvgRenderer class.

Method Details

Dispose() public méthode

public Dispose ( ) : void
Résultat void

DrawImage() public méthode

public DrawImage ( Image image, RectangleF destRect, RectangleF srcRect, GraphicsUnit graphicsUnit ) : void
image Image
destRect System.Drawing.RectangleF
srcRect System.Drawing.RectangleF
graphicsUnit GraphicsUnit
Résultat void

DrawImageUnscaled() public méthode

public DrawImageUnscaled ( Image image, Point location ) : void
image Image
location Point
Résultat void

DrawPath() public méthode

public DrawPath ( Pen pen, GraphicsPath path ) : void
pen System.Drawing.Pen
path System.Drawing.Drawing2D.GraphicsPath
Résultat void

FillPath() public méthode

public FillPath ( Brush brush, GraphicsPath path ) : void
brush System.Drawing.Brush
path System.Drawing.Drawing2D.GraphicsPath
Résultat void

FromGraphics() public static méthode

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

FromImage() public static méthode

Creates a new SvgRenderer from the specified Image.
public static FromImage ( Image image ) : SvgRenderer
image Image from which to create the new .
Résultat SvgRenderer

MeasureString() public méthode

public MeasureString ( string text, Font font ) : SizeF
text string
font System.Drawing.Font
Résultat System.Drawing.SizeF

RotateTransform() public méthode

public RotateTransform ( float fAngle ) : void
fAngle float
Résultat void

RotateTransform() public méthode

public RotateTransform ( float fAngle, MatrixOrder order ) : void
fAngle float
order MatrixOrder
Résultat void

Save() public méthode

public Save ( ) : void
Résultat void

ScaleTransform() public méthode

public ScaleTransform ( float sx, float sy ) : void
sx float
sy float
Résultat void

ScaleTransform() public méthode

public ScaleTransform ( float sx, float sy, MatrixOrder order ) : void
sx float
sy float
order MatrixOrder
Résultat void

SetClip() public méthode

public SetClip ( Region region ) : void
region System.Drawing.Region
Résultat void

TranslateTransform() public méthode

public TranslateTransform ( float dx, float dy ) : void
dx float
dy float
Résultat void

TranslateTransform() public méthode

public TranslateTransform ( float dx, float dy, MatrixOrder order ) : void
dx float
dy float
order MatrixOrder
Résultat void