Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.6.28
|
Leadtools Namespace > RasterImage Class : GetRegion Method |
public RasterRegion GetRegion( RasterRegionXForm xform )
'Declaration
Public Function GetRegion( _ ByVal xform As RasterRegionXForm _ ) As RasterRegion
'Usage
Dim instance As RasterImage Dim xform As RasterRegionXForm Dim value As RasterRegion value = instance.GetRegion(xform)
public RasterRegion GetRegion( RasterRegionXForm xform )
- (nullable LTRasterRegion *)getRegion:(nullable LTRasterRegionXForm *)xform error:(NSError **)error
public RasterRegion getRegion(RasterRegionXForm xform)
function Leadtools.RasterImage.GetRegion( xform )
public: RasterRegion^ GetRegion( RasterRegionXForm^ xform )
To set or updated the RasterRegion object that describes the current image region, use SetRegion.
If the image does not have a region, this method will return an empty RasterRegion object.
The RasterRegion class provides a platform independent representation of a region of interest in an image that can be used in any platform supported by LEADTOOLS such as GDI, GDI+, WPF and Silverlight. The RasterRegion class contains extensive methods and properties to manipulate the region data and save/load it to a byte array.
To convert a LEADTOOLS RasterRegion object to/from a device dependent region, you can use the following helper classes:
The RasterRegion class implements the IDisposable interface, so you must call Dispose on any region objects you create after using it.
For more information, refer to Creating a Region.
For more information, refer to Saving A Region.
For more information, refer to Working with the Existing Region.