public void Combine(LeadRect rect,RasterRegionCombineMode combineMode)
Public Overloads Sub Combine( _ByVal rect As LeadRect, _ByVal combineMode As RasterRegionCombineMode _)
- (BOOL)combineWithRect:(LeadRect)rectcombineMode:(LTRasterRegionCombineMode)combineModeerror:(NSError **)error
public void combine(LeadRect rect,RasterRegionCombineMode combineMode)
public:void Combine(LeadRect rect,RasterRegionCombineMode combineMode)
rect
The LeadRect structure to combine with this RasterRegion.
combineMode
One of the RasterRegionCombineMode enumeration members that describes the combine method to use. This cannot be RasterRegionCombineMode.AndNotImage or RasterRegionCombineMode.AndNotRegion. Using any of these combine method will result in an exception.
For more information, refer to RasterRegionCombineMode.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;public void RasterRegionCombineRectExample(){string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp");string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1_CombineRect.bmp");using (RasterCodecs codecs = new RasterCodecs()){// Load the source imageusing (RasterImage image = codecs.Load(srcFileName, 0, CodecsLoadByteOrder.BgrOrGray, 1, 1)){// Add a small elliptical regionimage.AddEllipseToRegion(null, new LeadRect(0, 0, image.ImageWidth / 3, image.ImageHeight / 3), RasterRegionCombineMode.Set);// Get this regionRasterRegion region = image.GetRegion(null);image.MakeRegionEmpty();// Create a rectangle that fits in this region areaLeadRect rc = new LeadRect(0, 0, image.ImageWidth / 4, image.ImageHeight / 4);// Combine the region to contain only the difference between the it and the rectangleregion.Combine(rc, RasterRegionCombineMode.Xor);// Set this region to the image and fill it with yellowimage.SetRegion(null, region, RasterRegionCombineMode.Set);FillCommand cmd = new FillCommand(RasterColor.FromKnownColor(RasterKnownColor.Yellow));cmd.Run(image);codecs.Save(image, destFileName, RasterImageFormat.Bmp, 24);}}}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images";}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingPublic Sub RasterRegionCombineRectExample()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_CombineRect.bmp")' Load the source imageUsing image As RasterImage = codecs.Load(srcFileName, 0, CodecsLoadByteOrder.BgrOrGray, 1, 1)' Add a small elliptical regionimage.AddEllipseToRegion(Nothing, New LeadRect(0, 0, image.ImageWidth \ 3, image.ImageHeight \ 3), RasterRegionCombineMode.Set)' Get this regionDim region As RasterRegion = image.GetRegion(Nothing)image.MakeRegionEmpty()' Create a rectangle that fits in this region areaDim rc As New LeadRect(0, 0, image.ImageWidth \ 4, image.ImageHeight \ 4)' Combine the region to contain only the difference between the it and the rectangleregion.Combine(rc, RasterRegionCombineMode.Xor)' Set this region to the image and fill it with yellowimage.SetRegion(Nothing, region, RasterRegionCombineMode.Set)Dim cmd As New FillCommand(RasterColor.FromKnownColor(RasterKnownColor.Yellow))cmd.Run(image)codecs.Save(image, destFileName, RasterImageFormat.Bmp, 24)End Usingcodecs.Dispose()End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\LEADTOOLS21\Resources\Images"End Class
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
