public RasterRegionXForm() - (instancetype)init public RasterRegionXForm() public:RasterRegionXForm();
__init__() # Default constructor using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;public void RasterRegionTransformExample(){string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.cmp");string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1_TransformRegion.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)){// Transform this region by making it twice as smallLeadRect bounds = region.GetBounds();RasterRegionXForm xform = RasterRegionXForm.Default;xform.XScalarNumerator = 1;xform.XScalarDenominator = 2;xform.YScalarNumerator = 1;xform.YScalarDenominator = 2;xform.XOffset = bounds.Width / 2;xform.YOffset = bounds.Height / 2;region.Transform(xform);// 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);}}}static class LEAD_VARS{public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images";}
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
