BitmapDataExtensionsClip(IReadableBitmapData, Rectangle) Method
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.
Namespace: KGySoft.Drawing.ImagingAssembly: KGySoft.Drawing.Core (in KGySoft.Drawing.Core.dll) Version: 9.0.0
public static IReadableBitmapData Clip(
this IReadableBitmapData source,
Rectangle clippingRegion
)
<ExtensionAttribute>
Public Shared Function Clip (
source As IReadableBitmapData,
clippingRegion As Rectangle
) As IReadableBitmapData
public:
[ExtensionAttribute]
static IReadableBitmapData^ Clip(
IReadableBitmapData^ source,
Rectangle clippingRegion
)
[<ExtensionAttribute>]
static member Clip :
source : IReadableBitmapData *
clippingRegion : Rectangle -> IReadableBitmapData
- source IReadableBitmapData
- The source bitmap data to be clipped.
- clippingRegion Rectangle
- A Rectangle that specifies a region within the source.
IReadableBitmapDataAn
IReadableBitmapData that provides access only to the specified region withing the
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).