C#
VB
Java
Objective-C
WinRT C#
C++
Trims this RasterRegion to fit inside a specified LeadRect.
Public Sub Clip( _ByVal rect As Leadtools.LeadRect _)
public void Clip(Leadtools.LeadRect rect)
- (BOOL)clip:(LeadRect)rect error:(NSError **)error public void clip(LeadRect rect) function Leadtools.RasterRegion.Clip(rect)
public:void Clip(Leadtools.LeadRect rect)
rect
A LeadRect that defines the clipping boundaries.
This example will create a large elliptical region in an image and fill it with yellow. It will then clip this region by 10 pixels from each side and fill the new region with red.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;using LeadtoolsExamples.Common;public void RasterRegionClipExample(){string srcFileName = Path.Combine(ImagesPath.Path, "Image1.cmp");string destFileName = Path.Combine(ImagesPath.Path, "Image1_ClipRegion.bmp");using (RasterCodecs codecs = new RasterCodecs()){// Load the source imageusing (RasterImage image = codecs.Load(srcFileName, 0, CodecsLoadByteOrder.BgrOrGray, 1, 1)){// Add a large elliptical regionimage.AddEllipseToRegion(null, new LeadRect(0, 0, image.ImageWidth, image.ImageHeight), RasterRegionCombineMode.Set);// Fill the image with yellowFillCommand cmd = new FillCommand(RasterColor.FromKnownColor(RasterKnownColor.Yellow));cmd.Run(image);// Get the regionusing (RasterRegion region = image.GetRegion(null)){// Clip this region by 10 pixels from each endLeadRect bounds = region.GetBounds();bounds.Inflate(-10, -10);region.Clip(bounds);// Re-set this region into the imageimage.SetRegion(null, region, RasterRegionCombineMode.Set);}// Now fill with red and savecmd = new FillCommand(RasterColor.FromKnownColor(RasterKnownColor.Red));cmd.Run(image);codecs.Save(image, destFileName, RasterImageFormat.Bmp, 24);}}}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingPublic Sub RasterRegionClipExample()Dim codecs As New RasterCodecs()Dim srcFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp")Dim destFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1_ClipRegion.bmp")' Load the source imageUsing image As RasterImage = codecs.Load(srcFileName, 0, CodecsLoadByteOrder.BgrOrGray, 1, 1)' Add a large elliptical regionimage.AddEllipseToRegion(Nothing, New LeadRect(0, 0, image.ImageWidth, image.ImageHeight), RasterRegionCombineMode.Set)' Fill the image with yellowDim cmd As New FillCommand(RasterColor.FromKnownColor(RasterKnownColor.Yellow))cmd.Run(image)' Get the regionUsing region As RasterRegion = image.GetRegion(Nothing)' Clip this region by 10 pixels from each endDim bounds As LeadRect = region.GetBounds()bounds.Inflate(-10, -10)region.Clip(bounds)' Re-set this region into the imageimage.SetRegion(Nothing, region, RasterRegionCombineMode.Set)End Using' Now fill with red and savecmd = New FillCommand(RasterColor.FromKnownColor(RasterKnownColor.Red))cmd.Run(image)codecs.Save(image, destFileName, RasterImageFormat.Bmp, 24)End Usingcodecs.Dispose()End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
