public interface IReadWriteBitmapData : IReadableBitmapData,
IBitmapData, IDisposable, IWritableBitmapData
Public Interface IReadWriteBitmapData
Inherits IReadableBitmapData, IBitmapData, IDisposable, IWritableBitmapData
public interface class IReadWriteBitmapData : IReadableBitmapData,
IBitmapData, IDisposable, IWritableBitmapData
type IReadWriteBitmapData =
interface
interface IReadableBitmapData
interface IBitmapData
interface IDisposable
interface IWritableBitmapData
end
AlphaThreshold |
If this IBitmapData represents a bitmap with single bit alpha or with a palette that has a transparent color,
then gets a threshold value for the Color32.A field, under which the color is considered transparent. If 0,
then the pixels to be set will never be transparent.
(Inherited from IBitmapData) |
BackColor |
When accessing pixels of indexed bitmaps, or setting pixels of bitmaps without alpha support, gets the color of the background.
For example, when setting color values with alpha, which are considered opaque, they will be blended with this color before setting the pixel.
See the Remarks section of the GetReadWriteBitmapData extension method for details and examples. (Inherited from IBitmapData) |
FirstRow |
Gets an IReadWriteBitmapDataRow instance representing the first row of the current IReadWriteBitmapData.
Subsequent rows can be accessed by calling the MoveNextRow method on the returned instance
while it returns . Alternatively, you can use the indexer to obtain any row.
See the Examples section of the GetReadWriteBitmapData method for examples. |
Height |
Gets the height of the current IBitmapData instance in pixels.
(Inherited from IBitmapData) |
IsDisposed |
Gets whether this IBitmapData instance is disposed.
(Inherited from IBitmapData) |
Item |
Gets an IReadWriteBitmapDataRow representing the row of the specified y coordinate in the current IReadWriteBitmapData.
When obtaining the same row repeatedly, then a cached instance is returned. To get a movable row use the GetMovableRow method instead.
See the Examples section of the GetReadWriteBitmapData method for examples. |
Palette |
Gets a Palette instance representing the colors used in this IBitmapData if PixelFormat represents an indexed format.
For indexed bitmaps Indexed property of PixelFormat returns .
(Inherited from IBitmapData) |
PixelFormat |
Gets a PixelFormatInfo of the current IBitmapData instance.
(Inherited from IBitmapData) |
RowSize |
Gets the size of a row in bytes, or zero, if this IBitmapData instance does not have an actual raw buffer to access.
(Inherited from IBitmapData) |
Size |
Gets the size of the current IBitmapData instance in pixels.
(Inherited from IBitmapData) |
Width |
Gets the width of the current IBitmapData instance in pixels.
(Inherited from IBitmapData) |
WorkingColorSpace |
Gets the preferred working color space when dealing with the pixels of this IBitmapData instance.
Some operations, such as setting pixels or drawing another bitmap data into this instance consider the value of this property.
Operations that use an IQuantizer instance may override the value of this property.
Default value if not implemented: Default. (Only in .NET Core 3.0/.NET Standard 2.1 and above. In earlier targeted frameworks this member must be implemented.) (Inherited from IBitmapData) |
GetColor32 |
Gets the color of the pixel at the specified coordinates as a Color32 value.
(Inherited from IReadableBitmapData) |
GetColor64 |
Gets the color of the pixel at the specified coordinates as a Color64 value.
(Inherited from IReadableBitmapData) |
GetColorF |
Gets the color of the pixel at the specified coordinates as a ColorF value.
(Inherited from IReadableBitmapData) |
GetColorIndex |
If this IReadableBitmapData is an indexed one, then gets the color index of the pixel in the current row of the specified pixel.
(Inherited from IReadableBitmapData) |
GetMovableRow | Gets an IReadWriteBitmapDataRowMovable instance representing the row of the specified y coordinate in the current IReadWriteBitmapData. Unlike the indexer, this method always allocates a new instance. |
GetPColor32 |
Gets the color of the pixel at the specified coordinates as a PColor32 value.
(Inherited from IReadableBitmapData) |
GetPColor64 |
Gets the color of the pixel at the specified coordinates as a PColor64 value.
(Inherited from IReadableBitmapData) |
GetPColorF |
Gets the color of the pixel at the specified coordinates as a PColorF value.
(Inherited from IReadableBitmapData) |
GetPixel |
Gets the color of the pixel at the specified coordinates as a Color value.
(Inherited from IReadableBitmapData) |
ReadRawT |
Gets the underlying raw value within the current IReadableBitmapData at the specified coordinates.
(Inherited from IReadableBitmapData) |
SetColor32 |
Sets the color of the pixel at the specified coordinates from a Color32 value.
(Inherited from IWritableBitmapData) |
SetColor64 |
Sets the color of the pixel at the specified coordinates from a Color64 value.
(Inherited from IWritableBitmapData) |
SetColorF |
Sets the color of the pixel at the specified coordinates from a ColorF value.
(Inherited from IWritableBitmapData) |
SetColorIndex |
If this IWritableBitmapData has an indexed pixel format, then sets the color index of the pixel in the current row at the specified pixel.
(Inherited from IWritableBitmapData) |
SetPColor32 |
Sets the color of the pixel at the specified coordinates from a PColor32 value.
(Inherited from IWritableBitmapData) |
SetPColor64 |
Sets the color of the pixel at the specified coordinates from a PColor64 value.
(Inherited from IWritableBitmapData) |
SetPColorF |
Sets the color of the pixel at the specified coordinates from a PColorF value.
(Inherited from IWritableBitmapData) |
SetPixel |
Sets the color of the pixel at the specified coordinates from a Color value.
(Inherited from IWritableBitmapData) |
WriteRawT |
Sets the underlying raw value within the current IWritableBitmapData at the specified coordinates.
(Inherited from IWritableBitmapData) |
AdjustBrightness |
Adjusts the brightness of the specified bitmapData.
(Defined by BitmapDataExtensions) |
AdjustBrightnessAsync |
Adjusts the brightness of the specified bitmapData asynchronously.
(Defined by BitmapDataExtensions) |
AdjustContrast |
Adjusts the contrast of the specified bitmapData.
(Defined by BitmapDataExtensions) |
AdjustContrastAsync |
Adjusts the contrast of the specified bitmapData asynchronously.
(Defined by BitmapDataExtensions) |
AdjustGamma |
Adjusts the gamma correction of the specified bitmapData.
(Defined by BitmapDataExtensions) |
AdjustGammaAsync |
Adjusts the gamma correction of the specified bitmapData asynchronously.
(Defined by BitmapDataExtensions) |
BeginAdjustBrightness |
Begins to adjust the brightness of the specified bitmapData asynchronously.
(Defined by BitmapDataExtensions) |
BeginAdjustContrast |
Begins to adjust the contrast of the specified bitmapData asynchronously.
(Defined by BitmapDataExtensions) |
BeginAdjustGamma |
Begins to adjust the gamma correction of the specified bitmapData asynchronously.
(Defined by BitmapDataExtensions) |
BeginClear |
Begins to clear the content of the specified bitmapData and fills it with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginClone |
Begins to clone the specified source with identical size asynchronously.
(Defined by BitmapDataExtensions) |
BeginClone |
Begins to clone the specified portion of the specified source asynchronously.
(Defined by BitmapDataExtensions) |
BeginClone |
Begins to clone the specified source with identical size asynchronously.
(Defined by BitmapDataExtensions) |
BeginClone |
Begins to clone the specified portion of source with the specified pixelFormat and palette asynchronously.
(Defined by BitmapDataExtensions) |
BeginClone |
Begins to clone the specified portion of source with the specified pixelFormat and color settings asynchronously.
(Defined by BitmapDataExtensions) |
BeginClone |
Begins to clone the specified portion of source with the specified pixelFormat, using an optional quantizer and ditherer asynchronously.
(Defined by BitmapDataExtensions) |
BeginClone |
Begins to clone the specified portion of source with the specified pixelFormat and color settings asynchronously.
(Defined by BitmapDataExtensions) |
BeginCopyTo |
Begins to copy the source IReadableBitmapData into the target IWritableBitmapData asynchronously,
without scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To draw a bitmap data into another one with blending use the BeginDrawInto methods instead.
(Defined by BitmapDataExtensions) |
BeginDither |
Begins to quantize an IReadWriteBitmapData with dithering asynchronously (reduces the number of colors while trying to preserve details)
using the specified quantizer and ditherer.
(Defined by BitmapDataExtensions) |
BeginDrawArc |
Begins to draw a one-pixel wide elliptical arc with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawArc |
Begins to draw a one-pixel wide elliptical arc with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawArc |
Begins to draw an elliptical arc with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawArc |
Begins to draw an elliptical arc with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawBeziers |
Begins to draw a series of one-pixel wide Bézier curves with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawBeziers |
Begins to draw a series of one-pixel wide Bézier curves with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawBeziers |
Begins to draw a series of Bézier curves with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawBeziers |
Begins to draw a series of Bézier curves with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawEllipse |
Begins to draw a one-pixel wide ellipse with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawEllipse |
Begins to draw a one-pixel wide ellipse with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawEllipse |
Begins to draw an ellipse with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawEllipse |
Begins to draw an ellipse with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawInto |
Begins to draw the source IReadableBitmapData into the target IReadWriteBitmapData asynchronously,
without scaling, using blending. This method always preserves the source size in pixels, works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
For scaling use the BeginDrawInto(IReadableBitmapData, IReadWriteBitmapData, Rectangle, Rectangle, IQuantizer, IDitherer, ScalingMode, AsyncConfig) overload.
To copy a bitmap data into another one without blending use the BeginCopyTo method instead.
(Defined by BitmapDataExtensions) |
BeginDrawInto |
Begins to draw the source IReadableBitmapData into the target IReadWriteBitmapData asynchronously,
using scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To copy a bitmap data into another one without blending use the BeginCopyTo method instead.
(Defined by BitmapDataExtensions) |
BeginDrawLine |
Begins to draw a one-pixel wide line between two points with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawLine |
Begins to draw a one-pixel wide line between two points with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawLine |
Begins to draw a line between two points with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawLine |
Begins to draw a line between two points with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawLines |
Begins to draw a series of connected, one-pixel wide lines with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawLines |
Begins to draw a series of connected, one-pixel wide lines with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawLines |
Begins to draw a series of connected lines with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawLines |
Begins to draw a series of connected lines with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawPath |
Begins to draw the one-pixel wide outline of a Path with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawPath |
Begins to draw the outline of a Path with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawPie |
Begins to draw a one-pixel wide pie shape with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawPie |
Begins to draw a one-pixel wide pie shape with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawPie |
Begins to draw a pie shape with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawPie |
Begins to draw a pie shape with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawPolygon |
Begins to draw a one-pixel wide polygon with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawPolygon |
Begins to draw a one-pixel wide polygon with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawPolygon |
Begins to draw a polygon with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawPolygon |
Begins to draw a polygon with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawRectangle |
Begins to draw a one-pixel wide rectangle with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawRectangle |
Begins to draw a one-pixel wide rectangle with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawRectangle |
Begins to draw a rectangle with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawRectangle |
Begins to draw a rectangle with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
BeginDrawRoundedRectangle |
Begins to draw a one-pixel wide rounded rectangle with the specified color asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
BeginDrawRoundedRectangle |
Begins to draw a one-pixel wide rounded rectangle with the specified color asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
BeginDrawRoundedRectangle |
Begins to draw a rounded rectangle with the specified Pen asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
BeginDrawRoundedRectangle |
Begins to draw a rounded rectangle with the specified Pen asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
BeginDrawRoundedRectangle |
Begins to draw a one-pixel wide rounded rectangle with the specified color asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
BeginDrawRoundedRectangle |
Begins to draw a one-pixel wide rounded rectangle with the specified color asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
BeginDrawRoundedRectangle |
Begins to draw a rounded rectangle with the specified Pen asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
BeginDrawRoundedRectangle |
Begins to draw a rounded rectangle with the specified Pen asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
BeginFillEllipse |
Begins to fill an ellipse with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillEllipse |
Begins to fill an ellipse with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillEllipse |
Begins to fill an ellipse with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillEllipse |
Begins to fill an ellipse with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillPath |
Begins to fill a Path with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillPath |
Begins to fill a Path with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillPie |
Begins to fill a pie shape with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillPie |
Begins to fill a pie shape with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillPie |
Begins to fill a pie shape with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillPie |
Begins to fill a pie shape with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillPolygon |
Begins to fill a polygon with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillPolygon |
Begins to fill a polygon with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillPolygon |
Begins to fill a polygon with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillPolygon |
Begins to fill a polygon with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillRectangle |
Begins to fill a rectangle with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillRectangle |
Begins to fill a rectangle with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillRectangle |
Begins to fill a rectangle with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillRectangle |
Begins to fill a rectangle with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
BeginFillRoundedRectangle |
Begins to fill a rounded rectangle with the specified Brush asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
BeginFillRoundedRectangle |
Begins to fill a rounded rectangle with the specified Brush asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
BeginFillRoundedRectangle |
Begins to fill a rounded rectangle with the specified color asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
BeginFillRoundedRectangle |
Begins to fill a rounded rectangle with the specified color asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
BeginFillRoundedRectangle |
Begins to fill a rounded rectangle with the specified Brush asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
BeginFillRoundedRectangle |
Begins to fill a rounded rectangle with the specified Brush asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
BeginFillRoundedRectangle |
Begins to fill a rounded rectangle with the specified color asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
BeginFillRoundedRectangle |
Begins to fill a rounded rectangle with the specified color asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
BeginGetColorCount |
Gets the actual number of colors of the specified bitmapData asynchronously. Colors are counted even for indexed bitmaps.
(Defined by BitmapDataExtensions) |
BeginGetColors |
Begins to get the colors used in the specified bitmapData asynchronously. A limit can be defined in maxColors.
(Defined by BitmapDataExtensions) |
BeginInvert |
Begins to Invert the colors of the specified bitmapData asynchronously.
(Defined by BitmapDataExtensions) |
BeginMakeGrayscale |
Begins to make this bitmapData grayscale asynchronously.
(Defined by BitmapDataExtensions) |
BeginMakeOpaque |
Begins to make this bitmapData opaque asynchronously using the specified backColor.
(Defined by BitmapDataExtensions) |
BeginMakeTransparent |
If possible, begins to make the background of this bitmapData transparent asynchronously, taking the bottom-left pixel as the background color.
If the bitmapData does not support transparency, then the pixels that have the same color as the bottom-left pixel will be set
to the BackColor of bitmapData.
(Defined by BitmapDataExtensions) |
BeginMakeTransparent |
If possible, begins to make the background of this bitmapData transparent asynchronously, using transparentColor as the background color.
If the bitmapData does not support transparency, then the pixels that have the same color as transparentColor will be set
to the BackColor of bitmapData.
(Defined by BitmapDataExtensions) |
BeginQuantize |
Begins to quantize an IReadWriteBitmapData asynchronously, using the specified quantizer (reduces the number of colors).
(Defined by BitmapDataExtensions) |
BeginReplaceColor |
Begins to replace every oldColor occurrences to newColor in the specified bitmapData asynchronously.
(Defined by BitmapDataExtensions) |
BeginResize |
Begins to resize the specified source asynchronously.
(Defined by BitmapDataExtensions) |
BeginSave |
Begins to save the content of this bitmapData into the specified stream asynchronously.
(Defined by BitmapDataExtensions) |
BeginToBitmap |
Begins to convert the specified source to a Bitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
BeginToBitmap |
Begins to convert the specified source to a Bitmap with a specific PixelFormat asynchronously.
(Defined by ReadableBitmapDataExtensions) |
BeginToGrayscale |
Begins to convert the specified bitmapData to grayscale asynchronously.
(Defined by BitmapDataExtensions) |
BeginToTransparent |
Begins to convert the specified bitmapData to another one with transparent background asynchronously.
(Defined by BitmapDataExtensions) |
BeginToTransparent |
Begins to convert the specified bitmapData to another one with transparent background asynchronously.
(Defined by BitmapDataExtensions) |
BeginToWriteableBitmap |
Begins to convert the specified source to a WriteableBitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
BeginToWriteableBitmap |
Begins to convert the specified source to a WriteableBitmap with a specific PixelFormat asynchronously.
(Defined by ReadableBitmapDataExtensions) |
BeginTransformColors |
Begins to transform the colors of this bitmapData asynchronously, using the specified transformFunction delegate.
(Defined by BitmapDataExtensions) |
Clear |
Clears the content of the specified bitmapData and fills it with the specified color.
(Defined by BitmapDataExtensions) |
Clear |
Clears the content of the specified bitmapData and fills it with the specified color.
(Defined by BitmapDataExtensions) |
Clear |
Clears the content of the specified bitmapData and fills it with the specified color,
using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
ClearAsync |
Begins to clear the content of the specified bitmapData and fills it with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
Clip |
Clips the specified source using the specified clippingRegion.
Unlike the Clone methods, this one returns a wrapper,
providing access only to the specified region of the original source.
This overload does not dispose source when the result is disposed.
See the Remarks section of the Clip(IReadableBitmapData, Rectangle, Boolean) overload for details. (Defined by BitmapDataExtensions) |
Clip |
Clips the specified source using the specified clippingRegion.
Unlike the Clone methods, this one returns a wrapper,
providing access only to the specified region of the original source.
This overload does not dispose source when the result is disposed.
See the Remarks section of the Clip(IWritableBitmapData, Rectangle, Boolean) overload for details. (Defined by BitmapDataExtensions) |
Clip |
Clips the specified source using the specified clippingRegion.
Unlike the Clone methods, this one returns a wrapper,
providing access only to the specified region of the original source.
This overload does not dispose source when the result is disposed.
See the Remarks section of the Clip(IReadWriteBitmapData, Rectangle, Boolean) overload for details. (Defined by BitmapDataExtensions) |
Clip |
Clips the specified source using the specified clippingRegion.
Unlike the Clone methods, this one returns a wrapper,
providing access only to the specified region of the original source.
(Defined by BitmapDataExtensions) |
Clip |
Clips the specified source using the specified clippingRegion.
Unlike the Clone methods, this one returns a wrapper,
providing access only to the specified region of the original source.
(Defined by BitmapDataExtensions) |
Clip |
Clips the specified source using the specified clippingRegion.
Unlike the Clone methods, this one returns a wrapper,
providing access only to the specified region of the original source.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size and the specified pixelFormat and palette.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size and the specified pixelFormat, using an optional ditherer.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size and the specified pixelFormat and color settings.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size and the specified pixelFormat, using an optional quantizer and ditherer.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size and the specified pixelFormat and palette.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat and palette.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat, using an optional ditherer.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat and palette,
using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size and the specified pixelFormat and color settings.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size and the specified pixelFormat and color settings.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size and the specified pixelFormat, using an optional quantizer and ditherer.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat and color settings.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat, using an optional quantizer and ditherer.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat and palette.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat and color settings,
using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat, using an optional quantizer and ditherer,
along with a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified source with identical size and the specified pixelFormat and color settings.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat and color settings.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat and color settings.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat, using an optional quantizer and ditherer.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat and color settings,
using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
Clone |
Gets the clone of the specified portion of source with the specified pixelFormat and color settings.
(Defined by BitmapDataExtensions) |
CloneAsync |
Gets the clone of the specified source with identical size asynchronously.
(Defined by BitmapDataExtensions) |
CloneAsync |
Gets the clone of the specified portion of the specified source asynchronously.
(Defined by BitmapDataExtensions) |
CloneAsync |
Gets the clone of the specified source with identical size asynchronously.
(Defined by BitmapDataExtensions) |
CloneAsync |
Gets the clone of the specified portion of source with the specified pixelFormat and palette asynchronously.
(Defined by BitmapDataExtensions) |
CloneAsync |
Gets the clone of the specified portion of source with the specified pixelFormat and color settings asynchronously.
(Defined by BitmapDataExtensions) |
CloneAsync |
Gets the clone of the specified portion of source with the specified pixelFormat, using an optional quantizer and ditherer asynchronously.
(Defined by BitmapDataExtensions) |
CloneAsync |
Gets the clone of the specified portion of source with the specified pixelFormat and color settings asynchronously.
(Defined by BitmapDataExtensions) |
CopyTo |
Copies the source IReadableBitmapData into the target IWritableBitmapData
without scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To draw a bitmap data into another one with blending use the DrawInto methods instead.
(Defined by BitmapDataExtensions) |
CopyTo |
Copies the source IReadableBitmapData into the target IWritableBitmapData
without scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To draw a bitmap data into another one with blending use the DrawInto methods instead.
(Defined by BitmapDataExtensions) |
CopyTo |
Copies the source IReadableBitmapData into the target IWritableBitmapData
without scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To draw a bitmap data into another one with blending use the DrawInto methods instead.
(Defined by BitmapDataExtensions) |
CopyTo |
Copies the source IReadableBitmapData into the target IWritableBitmapData
without scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To draw a bitmap data into another one with blending use the DrawInto methods instead.
(Defined by BitmapDataExtensions) |
CopyTo |
Copies the source IReadableBitmapData into the target IWritableBitmapData
without scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To draw a bitmap data into another one with blending use the DrawInto methods instead.
(Defined by BitmapDataExtensions) |
CopyTo |
Copies the source IReadableBitmapData into the target IWritableBitmapData
without scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To draw a bitmap data into another one with blending use the DrawInto methods instead.
(Defined by BitmapDataExtensions) |
CopyTo |
Copies the source IReadableBitmapData into the target IWritableBitmapData
without scaling and blending, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
CopyToAsync |
Copies the source IReadableBitmapData into the target IWritableBitmapData asynchronously,
without scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To draw a bitmap data into another one with blending use the DrawIntoAsync methods instead.
(Defined by BitmapDataExtensions) |
Dither |
Quantizes an IReadWriteBitmapData with dithering (reduces the number of colors while trying to preserve details)
using the specified quantizer and ditherer.
(Defined by BitmapDataExtensions) |
Dither |
Quantizes an IReadWriteBitmapData with the specified quantizer and ditherer,
using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
Dither |
Quantizes an IReadWriteBitmapData with dithering (reduces the number of colors while trying to preserve details)
using the specified quantizer and ditherer.
(Defined by BitmapDataExtensions) |
DitherAsync |
Quantizes an IReadWriteBitmapData with dithering asynchronously (reduces the number of colors while trying to preserve details)
using the specified quantizer and ditherer.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws a one-pixel wide elliptical arc with the specified color.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws a one-pixel wide elliptical arc with the specified color.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws a one-pixel wide elliptical arc with the specified color.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws a one-pixel wide elliptical arc with the specified color.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws a one-pixel wide elliptical arc with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws a one-pixel wide elliptical arc with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws an elliptical arc with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws an elliptical arc with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws an elliptical arc with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws an elliptical arc with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws a one-pixel wide elliptical arc with the specified color.
(Defined by BitmapDataExtensions) |
DrawArc |
Draws a one-pixel wide elliptical arc with the specified color.
(Defined by BitmapDataExtensions) |
DrawArcAsync |
Draws a one-pixel wide elliptical arc with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawArcAsync |
Draws a one-pixel wide elliptical arc with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawArcAsync |
Draws an elliptical arc with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawArcAsync |
Draws an elliptical arc with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawBeziers |
Draws a series of one-pixel wide Bézier curves with the specified color.
(Defined by BitmapDataExtensions) |
DrawBeziers |
Draws a series of one-pixel wide Bézier curves with the specified color.
(Defined by BitmapDataExtensions) |
DrawBeziers |
Draws a series of one-pixel wide Bézier curves with the specified color.
(Defined by BitmapDataExtensions) |
DrawBeziers |
Draws a series of one-pixel wide Bézier curves with the specified color.
(Defined by BitmapDataExtensions) |
DrawBeziers |
Draws a series of one-pixel wide Bézier curves with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawBeziers |
Draws a series of one-pixel wide Bézier curves with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawBeziers |
Draws a series of Bézier curves with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawBeziers |
Draws a series of Bézier curves with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawBeziers |
Draws a series of Bézier curves with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawBeziers |
Draws a series of Bézier curves with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawBeziersAsync |
Draws a series of one-pixel wide Bézier curves with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawBeziersAsync |
Draws a series of one-pixel wide Bézier curves with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawBeziersAsync |
Draws a series of Bézier curves with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawBeziersAsync |
Draws a series of Bézier curves with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws a one-pixel wide ellipse with the specified color.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws a one-pixel wide ellipse with the specified color.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws a one-pixel wide ellipse with the specified color.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws a one-pixel wide ellipse with the specified color.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws a one-pixel wide ellipse with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws a one-pixel wide ellipse with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws an ellipse with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws an ellipse with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws an ellipse with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws an ellipse with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws a one-pixel wide ellipse with the specified color.
(Defined by BitmapDataExtensions) |
DrawEllipse |
Draws a one-pixel wide ellipse with the specified color.
(Defined by BitmapDataExtensions) |
DrawEllipseAsync |
Draws a one-pixel wide ellipse with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawEllipseAsync |
Draws a one-pixel wide ellipse with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawEllipseAsync |
Draws an ellipse with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawEllipseAsync |
Draws an ellipse with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
without scaling, using blending. This method always preserves the source size in pixels, works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
For scaling use the overloads with targetRectangle and ScalingMode parameters.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
using scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
without scaling, using blending. This method always preserves the source size in pixels, works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
For scaling use the overloads with targetRectangle and ScalingMode parameters.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
without scaling, using blending. This method always preserves the source size in pixels, works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
For scaling use the overloads with targetRectangle and ScalingMode parameters.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
using scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
using scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
without scaling, using blending. This method always preserves the source size in pixels, works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
For scaling use the overloads with targetRectangle and ScalingMode parameters.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
without scaling, using blending. This method always preserves the source size in pixels, works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
For scaling use the overloads with targetRectangle and ScalingMode parameters.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
using scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
using scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
without scaling, using blending. This method always preserves the source size in pixels, works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
For scaling use the overloads with targetRectangle and ScalingMode parameters.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
without scaling, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
using scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
using scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
using scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To copy a bitmap data into another one without blending use the CopyTo methods instead.
(Defined by BitmapDataExtensions) |
DrawInto |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData
with scaling and blending, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawIntoAsync |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData asynchronously,
without scaling, using blending. This method always preserves the source size in pixels, works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
For scaling use the DrawIntoAsync(IReadableBitmapData, IReadWriteBitmapData, Rectangle, Rectangle, IQuantizer, IDitherer, ScalingMode, TaskConfig) overload.
To copy a bitmap data into another one without blending use the CopyToAsync method instead.
(Defined by BitmapDataExtensions) |
DrawIntoAsync |
Draws the source IReadableBitmapData into the target IReadWriteBitmapData asynchronously,
using scaling and blending. This method works between any pair of source and target KnownPixelFormats and supports quantizing and dithering.
To copy a bitmap data into another one without blending use the CopyToAsync method instead.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a one-pixel wide line between two points with the specified color.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a one-pixel wide line between two points with the specified color.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a one-pixel wide line between two points with the specified color.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a one-pixel wide line between two points with the specified color.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a one-pixel wide line between two points with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a one-pixel wide line between two points with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a line between two points with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a line between two points with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a line between two points with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a line between two points with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a one-pixel wide line between two points with the specified color.
(Defined by BitmapDataExtensions) |
DrawLine |
Draws a one-pixel wide line between two points with the specified color.
(Defined by BitmapDataExtensions) |
DrawLineAsync |
Draws a one-pixel wide line between two points with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawLineAsync |
Draws a one-pixel wide line between two points with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawLineAsync |
Draws a line between two points with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawLineAsync |
Draws a line between two points with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawLines |
Draws a series of connected, one-pixel wide lines with the specified color.
(Defined by BitmapDataExtensions) |
DrawLines |
Draws a series of connected, one-pixel wide lines with the specified color.
(Defined by BitmapDataExtensions) |
DrawLines |
Draws a series of connected, one-pixel wide lines with the specified color.
(Defined by BitmapDataExtensions) |
DrawLines |
Draws a series of connected, one-pixel wide lines with the specified color.
(Defined by BitmapDataExtensions) |
DrawLines |
Draws a series of connected, one-pixel wide lines with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawLines |
Draws a series of connected, one-pixel wide lines with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawLines |
Draws a series of connected lines with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawLines |
Draws a series of connected lines with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawLines |
Draws a series of connected lines with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawLines |
Draws a series of connected lines with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawLinesAsync |
Draws a series of connected, one-pixel wide lines with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawLinesAsync |
Draws a series of connected, one-pixel wide lines with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawLinesAsync |
Draws a series of connected lines with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawLinesAsync |
Draws a series of connected lines with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawPath |
Draws the one-pixel wide outline of a Path with the specified color.
(Defined by BitmapDataExtensions) |
DrawPath |
Draws the one-pixel wide outline of a Path with the specified color.
(Defined by BitmapDataExtensions) |
DrawPath |
Draws the one-pixel wide outline of a Path with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawPath |
Draws the outline of a Path with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawPath |
Draws the outline of a Path with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawPathAsync |
Draws the one-pixel wide outline of a Path with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawPathAsync |
Draws the outline of a Path with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a one-pixel wide pie shape with the specified color.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a one-pixel wide pie shape with the specified color.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a one-pixel wide pie shape with the specified color.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a one-pixel wide pie shape with the specified color.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a one-pixel wide pie shape with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a one-pixel wide pie shape with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a pie shape with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a pie shape with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a pie shape with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a pie shape with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a one-pixel wide pie shape with the specified color.
(Defined by BitmapDataExtensions) |
DrawPie |
Draws a one-pixel wide pie shape with the specified color.
(Defined by BitmapDataExtensions) |
DrawPieAsync |
Draws a one-pixel wide pie shape with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawPieAsync |
Draws a one-pixel wide pie shape with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawPieAsync |
Draws a pie shape with the specifiedPen asynchronously.
(Defined by BitmapDataExtensions) |
DrawPieAsync |
Draws a pie shape with the specifiedPen asynchronously.
(Defined by BitmapDataExtensions) |
DrawPolygon |
Draws a one-pixel wide polygon with the specified color.
(Defined by BitmapDataExtensions) |
DrawPolygon |
Draws a one-pixel wide polygon with the specified color.
(Defined by BitmapDataExtensions) |
DrawPolygon |
Draws a one-pixel wide polygon with the specified color.
(Defined by BitmapDataExtensions) |
DrawPolygon |
Draws a one-pixel wide polygon with the specified color.
(Defined by BitmapDataExtensions) |
DrawPolygon |
Draws a one-pixel wide polygon with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawPolygon |
Draws a one-pixel wide polygon with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawPolygon |
Draws a polygon with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawPolygon |
Draws a polygon with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawPolygon |
Draws a polygon with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawPolygon |
Draws a polygon with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawPolygonAsync |
Draws a one-pixel wide polygon with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawPolygonAsync |
Draws a one-pixel wide polygon with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawPolygonAsync |
Draws a polygon with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawPolygonAsync |
Draws a polygon with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a one-pixel wide rectangle with the specified color.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a one-pixel wide rectangle with the specified color.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a one-pixel wide rectangle with the specified color.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a one-pixel wide rectangle with the specified color.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a one-pixel wide rectangle with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a one-pixel wide rectangle with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a rectangle with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a rectangle with the specified Pen, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a rectangle with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a rectangle with the specified Pen.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a one-pixel wide rectangle with the specified color.
(Defined by BitmapDataExtensions) |
DrawRectangle |
Draws a one-pixel wide rectangle with the specified color.
(Defined by BitmapDataExtensions) |
DrawRectangleAsync |
Draws a one-pixel wide rectangle with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawRectangleAsync |
Draws a one-pixel wide rectangle with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
DrawRectangleAsync |
Draws a rectangle with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawRectangleAsync |
Draws a rectangle with the specified Pen asynchronously.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying the same corner radius to all corners,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying the same corner radius to all corners,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a rounded rectangle with the specified Pen, applying the same corner radius to all corners,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a rounded rectangle with the specified Pen, applying the same corner radius to all corners,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a rounded rectangle with the specified Pen, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a rounded rectangle with the specified Pen, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying a custom corner radius to each corner,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying a custom corner radius to each corner,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a rounded rectangle with the specified Pen, applying a custom corner radius to each corner,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a rounded rectangle with the specified Pen, applying a custom corner radius to each corner,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a rounded rectangle with the specified Pen, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a rounded rectangle with the specified Pen, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangle |
Draws a one-pixel wide rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangleAsync |
Draws a one-pixel wide rounded rectangle with the specified color asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangleAsync |
Draws a one-pixel wide rounded rectangle with the specified color asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangleAsync |
Draws a rounded rectangle with the specified Pen asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangleAsync |
Draws a rounded rectangle with the specified Pen asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangleAsync |
Draws a one-pixel wide rounded rectangle with the specified color asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangleAsync |
Draws a one-pixel wide rounded rectangle with the specified color asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangleAsync |
Draws a rounded rectangle with the specified Pen asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
DrawRoundedRectangleAsync |
Draws a rounded rectangle with the specified Pen asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified color.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified color.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified Brush.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified Brush.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified color.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified color.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified Brush, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified Brush, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified color.
(Defined by BitmapDataExtensions) |
FillEllipse |
Fills an ellipse with the specified color.
(Defined by BitmapDataExtensions) |
FillEllipseAsync |
Fills an ellipse with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
FillEllipseAsync |
Fills an ellipse with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
FillEllipseAsync |
Fills an ellipse with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
FillEllipseAsync |
Fills an ellipse with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
FillPath |
Fills a Path with the specified color.
(Defined by BitmapDataExtensions) |
FillPath |
Fills a Path with the specified Brush.
(Defined by BitmapDataExtensions) |
FillPath |
Fills a Path with the specified color.
(Defined by BitmapDataExtensions) |
FillPath |
Fills a Path with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillPath |
Fills a Path with the specified Brush, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillPathAsync |
Begins to fill a Path with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
FillPathAsync |
Begins to fill a Path with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified color.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified color.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified Brush.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified Brush.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified color.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified color.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified Brush, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified Brush, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified color.
(Defined by BitmapDataExtensions) |
FillPie |
Fills a pie shape with the specified color.
(Defined by BitmapDataExtensions) |
FillPieAsync |
Fills a pie shape with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
FillPieAsync |
Fills a pie shape with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
FillPieAsync |
Fills a pie shape with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
FillPieAsync |
Fills a pie shape with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
FillPolygon |
Fills a polygon with the specified color.
(Defined by BitmapDataExtensions) |
FillPolygon |
Fills a polygon with the specified color.
(Defined by BitmapDataExtensions) |
FillPolygon |
Fills a polygon with the specified Brush.
(Defined by BitmapDataExtensions) |
FillPolygon |
Fills a polygon with the specified Brush.
(Defined by BitmapDataExtensions) |
FillPolygon |
Fills a polygon with the specified color.
(Defined by BitmapDataExtensions) |
FillPolygon |
Fills a polygon with the specified color.
(Defined by BitmapDataExtensions) |
FillPolygon |
Fills a polygon with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillPolygon |
Fills a polygon with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillPolygon |
Fills a polygon with the specified Brush, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillPolygon |
Fills a polygon with the specified Brush, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillPolygonAsync |
Fills a polygon with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
FillPolygonAsync |
Fills a polygon with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
FillPolygonAsync |
Fills a polygon with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
FillPolygonAsync |
Fills a polygon with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified color.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified color.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified Brush.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified Brush.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified color.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified color.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified color, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified Brush, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified Brush, using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified color.
(Defined by BitmapDataExtensions) |
FillRectangle |
Fills a rectangle with the specified color.
(Defined by BitmapDataExtensions) |
FillRectangleAsync |
Fills a rectangle with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
FillRectangleAsync |
Fills a rectangle with the specified Brush asynchronously.
(Defined by BitmapDataExtensions) |
FillRectangleAsync |
Fills a rectangle with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
FillRectangleAsync |
Fills a rectangle with the specified color asynchronously.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified Brush, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified Brush, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying the same corner radius to all corners,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying the same corner radius to all corners,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified Brush, applying the same corner radius to all corners,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified Brush, applying the same corner radius to all corners,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified Brush, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified Brush, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying a custom corner radius to each corner,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying a custom corner radius to each corner,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified Brush, applying a custom corner radius to each corner,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified Brush, applying a custom corner radius to each corner,
and using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangle |
Fills a rounded rectangle with the specified color, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangleAsync |
Fills a rounded rectangle with the specified Brush asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangleAsync |
Fills a rounded rectangle with the specified Brush asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangleAsync |
Fills a rounded rectangle with the specified color asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangleAsync |
Fills a rounded rectangle with the specified color asynchronously, applying the same corner radius to all corners.
(Defined by BitmapDataExtensions) |
FillRoundedRectangleAsync |
Fills a rounded rectangle with the specified Brush asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangleAsync |
Fills a rounded rectangle with the specified Brush asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangleAsync |
Fills a rounded rectangle with the specified color asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
FillRoundedRectangleAsync |
Fills a rounded rectangle with the specified color asynchronously, applying a custom corner radius to each corner.
(Defined by BitmapDataExtensions) |
GetColorCount |
Gets the actual number of colors of the specified bitmapData. Colors are counted even for indexed bitmaps.
(Defined by BitmapDataExtensions) |
GetColorCountAsync |
Gets the actual number of colors of the specified bitmapData asynchronously. Colors are counted even for indexed bitmaps.
(Defined by BitmapDataExtensions) |
GetColors |
Gets the colors used in the specified bitmapData. A limit can be defined in maxColors.
(Defined by BitmapDataExtensions) |
GetColorsAsync |
Gets the colors used in the specified bitmapData asynchronously. A limit can be defined in maxColors.
(Defined by BitmapDataExtensions) |
GetPreferredColorSpace |
Gets a non-default WorkingColorSpace that can be used when working with the specified bitmapData.
(Defined by BitmapDataExtensions) |
Invert |
Inverts the colors of the specified bitmapData.
(Defined by BitmapDataExtensions) |
InvertAsync |
Inverts the colors of the specified bitmapData asynchronously.
(Defined by BitmapDataExtensions) |
MakeGrayscale |
Makes this bitmapData grayscale.
(Defined by BitmapDataExtensions) |
MakeGrayscaleAsync |
Makes this bitmapData grayscale asynchronously.
(Defined by BitmapDataExtensions) |
MakeOpaque |
Makes this bitmapData opaque using the specified backColor.
(Defined by BitmapDataExtensions) |
MakeOpaqueAsync |
Makes this bitmapData opaque asynchronously using the specified backColor.
(Defined by BitmapDataExtensions) |
MakeTransparent |
If possible, makes the background of this bitmapData transparent, taking the bottom-left pixel as the background color.
If the bitmapData does not support transparency, then the pixels that have the same color as the bottom-left pixel will be set
to the BackColor of bitmapData.
(Defined by BitmapDataExtensions) |
MakeTransparent |
If possible, makes the background of this bitmapData transparent, using transparentColor as the background color.
If the bitmapData does not support transparency, then the pixels that have the same color as transparentColor will be set
to the BackColor of bitmapData.
(Defined by BitmapDataExtensions) |
MakeTransparentAsync |
If possible, makes the background of this bitmapData transparent asynchronously, taking the bottom-left pixel as the background color.
If the bitmapData does not support transparency, then the pixels that have the same color as the bottom-left pixel will be set
to the BackColor of bitmapData.
(Defined by BitmapDataExtensions) |
MakeTransparentAsync |
If possible, makes the background of this bitmapData transparent asynchronously, using transparentColor as the background color.
If the bitmapData does not support transparency, then the pixels that have the same color as transparentColor will be set
to the BackColor of bitmapData.
(Defined by BitmapDataExtensions) |
Quantize |
Quantizes an IReadWriteBitmapData using the specified quantizer (reduces the number of colors).
(Defined by BitmapDataExtensions) |
Quantize |
Quantizes an IReadWriteBitmapData with the specified quantizer (reduces the number of colors),
using a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
Quantize |
Quantizes an IReadWriteBitmapData using the specified quantizer (reduces the number of colors).
(Defined by BitmapDataExtensions) |
QuantizeAsync |
Quantizes an IReadWriteBitmapData asynchronously, using the specified quantizer (reduces the number of colors).
(Defined by BitmapDataExtensions) |
ReplaceColor |
Replaces every oldColor occurrences to newColor in the specified bitmapData.
(Defined by BitmapDataExtensions) |
ReplaceColorAsync |
Replaces every oldColor occurrences to newColor in the specified bitmapData asynchronously.
(Defined by BitmapDataExtensions) |
Resize |
Resizes the specified source.
(Defined by BitmapDataExtensions) |
ResizeAsync |
Resizes the specified source asynchronously.
(Defined by BitmapDataExtensions) |
Save |
Saves the content of this bitmapData into the specified stream.
(Defined by BitmapDataExtensions) |
SaveAsync |
Saves the content of this bitmapData into the specified stream asynchronously.
(Defined by BitmapDataExtensions) |
ToBitmap |
Converts the specified source to a Bitmap.
(Defined by ReadableBitmapDataExtensions) |
ToBitmap |
Converts the specified source to a Bitmap that has the specified PixelFormat.
(Defined by ReadableBitmapDataExtensions) |
ToBitmapAsync |
Converts the specified source to a Bitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
ToBitmapAsync |
Converts the specified source to a Bitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
ToGrayscale |
Returns a new IReadWriteBitmapData, which is the grayscale version of the specified bitmapData.
(Defined by BitmapDataExtensions) |
ToGrayscaleAsync |
Returns a new IReadWriteBitmapData asynchronously, which is the grayscale version of the specified bitmapData.
(Defined by BitmapDataExtensions) |
ToSKBitmap |
Converts the specified source to an SKBitmap.
(Defined by ReadableBitmapDataExtensions) |
ToSKBitmap |
Converts the specified source to an SKBitmap that has the specified colorType.
See the Remarks section of the ToSKBitmap(IReadableBitmapData, SKColorType, SKAlphaType, WorkingColorSpace, IQuantizer, IDitherer) overload for details. (Defined by ReadableBitmapDataExtensions) |
ToSKBitmap |
Converts the specified source to an SKBitmap that has the specified colorType and alphaType.
See the Remarks section of the ToSKBitmap(IReadableBitmapData, SKColorType, SKAlphaType, WorkingColorSpace, IQuantizer, IDitherer) overload for details. (Defined by ReadableBitmapDataExtensions) |
ToSKBitmap |
Converts the specified source to an SKBitmap that has the specified colorType, alphaType and color space.
(Defined by ReadableBitmapDataExtensions) |
ToSKBitmapAsync |
Converts the specified source to an SKBitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
ToSKBitmapAsync |
Converts the specified source to an SKBitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
ToSKBitmapAsync |
Converts the specified source to an SKBitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
ToSKBitmapAsync |
Converts the specified source to an SKBitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
ToTransparent |
Returns a new IReadWriteBitmapData, which is the clone of the specified bitmapData with transparent background.
(Defined by BitmapDataExtensions) |
ToTransparent |
Returns a new IReadWriteBitmapData, which is the clone of the specified bitmapData with transparent background.
(Defined by BitmapDataExtensions) |
ToTransparentAsync |
Returns a new IReadWriteBitmapData asynchronously, which is the clone of the specified bitmapData with transparent background.
(Defined by BitmapDataExtensions) |
ToTransparentAsync |
Returns a new IReadWriteBitmapData asynchronously, which is the clone of the specified bitmapData with transparent background.
(Defined by BitmapDataExtensions) |
ToWriteableBitmap |
Converts the specified source to a WriteableBitmap.
(Defined by ReadableBitmapDataExtensions) |
ToWriteableBitmap |
Converts the specified source to a WriteableBitmap.
(Defined by ReadableBitmapDataExtensions) |
ToWriteableBitmap |
Converts the specified source to a WriteableBitmap using an optionally specified quantizer and ditherer.
(Defined by ReadableBitmapDataExtensions) |
ToWriteableBitmap |
Converts the specified source to a WriteableBitmap that has the specified PixelFormat.
(Defined by ReadableBitmapDataExtensions) |
ToWriteableBitmapAsync |
Converts the specified source to a WriteableBitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
ToWriteableBitmapAsync |
Converts the specified source to a WriteableBitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
ToWriteableBitmapAsync |
Converts the specified source to a WriteableBitmap asynchronously, using an optionally specified quantizer and ditherer.
(Defined by ReadableBitmapDataExtensions) |
ToWriteableBitmapAsync |
Converts the specified source to a WriteableBitmap asynchronously.
(Defined by ReadableBitmapDataExtensions) |
TransformColors |
Transforms the colors of this bitmapData using the specified transformFunction delegate.
(Defined by BitmapDataExtensions) |
TransformColors |
Transforms the colors of this bitmapData using the specified transformFunction delegate.
(Defined by BitmapDataExtensions) |
TransformColors |
Transforms the colors of this bitmapData using the specified transformFunction delegate.
(Defined by BitmapDataExtensions) |
TransformColors |
Transforms the colors of this bitmapData using the specified transformFunction delegate
and a context that may belong to a higher level, possibly asynchronous operation.
(Defined by BitmapDataExtensions) |
TransformColorsAsync |
Transforms the colors of this bitmapData asynchronously, using the specified transformFunction delegate.
(Defined by BitmapDataExtensions) |
TrySetPalette |
Tries to the set the specified palette for this IWritableBitmapData.
(Defined by BitmapDataExtensions) |