BitmapDataExtensionsClone(IReadableBitmapData, Rectangle, KnownPixelFormat, IDitherer) Method
Gets the clone of the specified portion of source with the specified pixelFormat, using an optional ditherer.
Namespace: KGySoft.Drawing.ImagingAssembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 7.0.0
public static IReadWriteBitmapData Clone(
this IReadableBitmapData source,
Rectangle sourceRectangle,
KnownPixelFormat pixelFormat,
IDitherer? ditherer
)
<ExtensionAttribute>
Public Shared Function Clone (
source As IReadableBitmapData,
sourceRectangle As Rectangle,
pixelFormat As KnownPixelFormat,
ditherer As IDitherer
) As IReadWriteBitmapData
public:
[ExtensionAttribute]
static IReadWriteBitmapData^ Clone(
IReadableBitmapData^ source,
Rectangle sourceRectangle,
KnownPixelFormat pixelFormat,
IDitherer^ ditherer
)
[<ExtensionAttribute>]
static member Clone :
source : IReadableBitmapData *
sourceRectangle : Rectangle *
pixelFormat : KnownPixelFormat *
ditherer : IDitherer -> IReadWriteBitmapData
- source IReadableBitmapData
- An IReadableBitmapData instance to be cloned.
- sourceRectangle Rectangle
- A Rectangle that specifies the portion of the source to be cloned.
- pixelFormat KnownPixelFormat
- The desired pixel format of the result.
- ditherer IDitherer
- The ditherer to be used. Might be ignored if pixelFormat represents an at least 24 bits-per-pixel size.
IReadWriteBitmapDataAn
IReadWriteBitmapData instance that represents the clone of the specified
source.In Visual Basic and C#, you can call this method as an instance method on any object of type
IReadableBitmapData. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
This method adjusts the degree of parallelization automatically, blocks the caller, and does not support cancellation or reporting progress. Use the
BeginClone(IReadableBitmapData, KnownPixelFormat, IQuantizer, IDitherer, NullableRectangle, AsyncConfig)
or
CloneAsync(IReadableBitmapData, KnownPixelFormat, IQuantizer, IDitherer, NullableRectangle, TaskConfig) (in .NET Framework 4.0 and above) methods for asynchronous call and to adjust parallelization, set up cancellation and for reporting progress.
If pixelFormat can represent a narrower set of colors, then the result will be automatically quantized to its color space.
To use dithering a ditherer must be explicitly specified.
Color depth of wide-color formats (Format16bppGrayScale, Format48bppRgb, Format64bppArgb, Format64bppPArgb)
can be preserved only between the same pixel formats. If pixel formats are different, then colors might be quantized to 32bpp ones during the operation.
See the
Examples section of the
ConvertPixelFormat(Image, PixelFormat, IQuantizer?, IDitherer?) extension method
for some examples. The
ConvertPixelFormat extensions work the same way
for
Images
as the
Clone extensions for
IReadableBitmapData instances.