Updates this RasterRegion to a combination of itself and the specified RasterRegion
public void Combine(RasterRegion region,RasterRegionCombineMode combineMode)
Public Overloads Sub Combine( _ByVal region As Leadtools.RasterRegion, _ByVal combineMode As Leadtools.RasterRegionCombineMode _)
public void Combine(Leadtools.RasterRegion region,Leadtools.RasterRegionCombineMode combineMode)
- (BOOL)combineWithRegion:(LTRasterRegion *)regioncombineMode:(LTRasterRegionCombineMode)combineModeerror:(NSError **)error
public void combine(RasterRegion region,RasterRegionCombineMode combineMode)
function Leadtools.RasterRegion.Combine(RasterRegion,RasterRegionCombineMode)(region ,combineMode)
public:void Combine(Leadtools.RasterRegion^ region,Leadtools.RasterRegionCombineMode combineMode)
region
The RasterRegion 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;using LeadtoolsExamples.Common;public void RasterRegionCombineRegionExample(){string srcFileName = Path.Combine(ImagesPath.Path, "Image1.cmp");string destFileName = Path.Combine(ImagesPath.Path, "Image1_CombineRegion.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 region1 = image.GetRegion(null);image.MakeRegionEmpty();// Add a smaller elliptical regionimage.AddEllipseToRegion(null, new LeadRect(0, 0, image.ImageWidth / 4, image.ImageHeight / 4), RasterRegionCombineMode.Set);// Get this regionRasterRegion region2 = image.GetRegion(null);image.MakeRegionEmpty();// Combine both regions to contain only the difference between the tworegion1.Combine(region2, RasterRegionCombineMode.Xor);region2.Dispose();// Set this region to the image and fill it with yellowimage.SetRegion(null, region1, RasterRegionCombineMode.Set);region1.Dispose();FillCommand cmd = new FillCommand(RasterColor.FromKnownColor(RasterKnownColor.Yellow));cmd.Run(image);codecs.Save(image, destFileName, RasterImageFormat.Bmp, 24);}}}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingPublic Sub RasterRegionCombineRegionExample()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_CombineRegion.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 region1 As RasterRegion = image.GetRegion(Nothing)image.MakeRegionEmpty()' Add a smaller elliptical regionimage.AddEllipseToRegion(Nothing, New LeadRect(0, 0, image.ImageWidth \ 4, image.ImageHeight \ 4), RasterRegionCombineMode.Set)' Get this regionDim region2 As RasterRegion = image.GetRegion(Nothing)image.MakeRegionEmpty()' Combine both regions to contain only the difference between the tworegion1.Combine(region2, RasterRegionCombineMode.Xor)region2.Dispose()' Set this region to the image and fill it with yellowimage.SetRegion(Nothing, region1, RasterRegionCombineMode.Set)region1.Dispose()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:\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
