Class ResizeProcessor
Defines an image resizing operation with the given IResampler and dimensional parameters.
Inherited Members
Namespace: SixLabors.ImageSharp.Processing.Processors.Transforms
Assembly: SixLabors.ImageSharp.dll
Syntax
public class ResizeProcessor : CloningImageProcessor, ICloningImageProcessor, IImageProcessorConstructors
| Improve this Doc View SourceResizeProcessor(ResizeOptions, Size)
Initializes a new instance of the ResizeProcessor class.
Declaration
public ResizeProcessor(ResizeOptions options, Size sourceSize)Parameters
| Type | Name | Description | 
|---|---|---|
| ResizeOptions | options | The resize options. | 
| Size | sourceSize | The source image size. | 
Properties
| Improve this Doc View SourceDestinationHeight
Gets the destination height.
Declaration
public int DestinationHeight { get; }Property Value
| Type | Description | 
|---|---|
| Int32 | 
DestinationRectangle
Gets the resize rectangle.
Declaration
public Rectangle DestinationRectangle { get; }Property Value
| Type | Description | 
|---|---|
| Rectangle | 
DestinationWidth
Gets the destination width.
Declaration
public int DestinationWidth { get; }Property Value
| Type | Description | 
|---|---|
| Int32 | 
Options
Gets the resize options.
Declaration
public ResizeOptions Options { get; }Property Value
| Type | Description | 
|---|---|
| ResizeOptions | 
Methods
| Improve this Doc View SourceCreatePixelSpecificCloningProcessor<TPixel>(Configuration, Image<TPixel>, Rectangle)
Creates a pixel specific ICloningImageProcessor<TPixel> that is capable of executing the processing algorithm on an Image<TPixel>.
Declaration
public override ICloningImageProcessor<TPixel> CreatePixelSpecificCloningProcessor<TPixel>(Configuration configuration, Image<TPixel> source, Rectangle sourceRectangle)
    where TPixel : struct, IPixel<TPixel>Parameters
| Type | Name | Description | 
|---|---|---|
| Configuration | configuration | The configuration which allows altering default behaviour or extending the library. | 
| Image<TPixel> | source | The source image. Cannot be null. | 
| Rectangle | sourceRectangle | The Rectangle structure that specifies the portion of the image object to draw. | 
Returns
| Type | Description | 
|---|---|
| ICloningImageProcessor<TPixel> | 
Type Parameters
| Name | Description | 
|---|---|
| TPixel | The pixel type. | 
Overrides
SixLabors.ImageSharp.Processing.Processors.CloningImageProcessor.CreatePixelSpecificCloningProcessor<TPixel>(SixLabors.ImageSharp.Configuration, SixLabors.ImageSharp.Image<TPixel>, SixLabors.ImageSharp.Rectangle)