RasterImage object that is updated with a shallow copy of image that also has a region that contains the removed borders.
Syntax
Example
Visual Basic | Copy Code |
---|
ImageProcessing.Core.BorderRemoveCommand.ImageRegion
Public Sub ImageRegionPropertyExample()
RasterCodecs.Startup()
Dim codecs As New RasterCodecs()
codecs.ThrowExceptionsOnInvalidImages = True
Dim leadImage As RasterImage = codecs.Load("C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Clean.tif")
Dim command As BorderRemoveCommand = New BorderRemoveCommand
command.Border = BorderRemoveBorderFlags.All
command.Flags = BorderRemoveCommandFlags.UseVariance Or BorderRemoveCommandFlags.SingleRegion Or BorderRemoveCommandFlags.LeadRegion
command.Percent = 20
command.Variance = 3
command.WhiteNoiseLength = 9
command.Run(leadImage)
leadImage.AddGdiPlusRegionToRegion(Nothing, command.ImageRegion.RegionToGdiPlusRegion(Nothing), RasterRegionCombineMode.Set)
RasterCodecs.Shutdown()
End Sub |
C# | Copy Code |
---|
ImageProcessing.Core.BorderRemoveCommand.ImageRegion public void ImageRegionPropertyExample() { // Load an image RasterCodecs.Startup(); RasterCodecs codecs = new RasterCodecs(); codecs.ThrowExceptionsOnInvalidImages = true; RasterImage image = codecs.Load(@"C:\Program Files\LEAD Technologies\LEADTOOLS 15\Images\Clean.tif"); // Prepare the command BorderRemoveCommand command = new BorderRemoveCommand(); command.Border = BorderRemoveBorderFlags.All; command.Flags = BorderRemoveCommandFlags.UseVariance | BorderRemoveCommandFlags.SingleRegion | BorderRemoveCommandFlags.LeadRegion; command.Percent = 20; command.Variance = 3; command.WhiteNoiseLength = 9; command.Run(image); image.AddGdiPlusRegionToRegion(null, command.ImageRegion.RegionToGdiPlusRegion(null), RasterRegionCombineMode.Set); RasterCodecs.Shutdown(); } |
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also