IDrawingFactory Interface

IDrawingFactory interface

Represents a factory for creating drawing-related objects.

public interface IDrawingFactory : IDisposable

Methods

NameDescription
createInterpolationColor(Color, float)Creates an interpolation color with the specified color and position.
createLinearGradientBrush(RectangleF, IInterpolationColor[])Creates a linear gradient brush with the specified parameters.
createMatrix()Creates a new identity matrix.
createMatrix(IMatrix)Creates a new matrix with the same contents as the specified matrix.
createMatrix(float, float, float, float, float, float)Creates a new matrix with the specified elements.
createSolidBrush(Color)Creates a solid brush with the specified color.
createTextureBrush(byte[])Creates a texture brush with the specified parameters.

See Also