Class PaintProcessor
- Namespace
- SixLabors.ImageSharp.Drawing.Processing
- Assembly
- SixLabors.ImageSharp.Drawing.dll
Defines the image processor used by Paint(IImageProcessingContext, DrawingOptions, CanvasAction) to execute a canvas callback for each image frame.
public sealed class PaintProcessor : IImageProcessor
- Inheritance
-
PaintProcessor
- Implements
- Inherited Members
Constructors
PaintProcessor(DrawingOptions, CanvasAction)
Initializes a new instance of the PaintProcessor class.
public PaintProcessor(DrawingOptions options, CanvasAction action)
Parameters
optionsDrawingOptionsThe drawing options used when creating each frame canvas.
actionCanvasActionThe per-frame painting callback.
Properties
Options
Gets the drawing options used when creating each frame canvas.
public DrawingOptions Options { get; }
Property Value
Methods
CreatePixelSpecificProcessor<TPixel>(Configuration, Image<TPixel>, Rectangle)
Creates a pixel specific IImageProcessor<TPixel> that is capable of executing the processing algorithm on an Image<TPixel>.
public IImageProcessor<TPixel> CreatePixelSpecificProcessor<TPixel>(Configuration configuration, Image<TPixel> source, Rectangle sourceRectangle) where TPixel : unmanaged, IPixel<TPixel>
Parameters
configurationConfigurationThe configuration which allows altering default behaviour or extending the library.
sourceImage<TPixel>The source image. Cannot be null.
sourceRectangleRectangleThe Rectangle structure that specifies the portion of the image object to draw.
Returns
- IImageProcessor<TPixel>
Type Parameters
TPixelThe pixel type.