public LeadRect RectangleToImage(
RasterViewPerspective viewPerspective,
LeadRect rc
)
- (LeadRect)rectangleToImage:(LTRasterViewPerspective)viewPerspective
sourceRect:(LeadRect)src
public LeadRect rectangleToImage(
RasterViewPerspective viewPerspective,
LeadRect rc
);
public:
LeadRect RectangleToImage(
RasterViewPerspective viewPerspective,
LeadRect rc
)
def RectangleToImage(self,viewPerspective,rc):
viewPerspective
Source view perspective from which the rectangle should be translated.
rc
The rectangle to translate.
The translated rectangle.
For more information, refer to Accounting for View Perspective.
For more information, refer to Changing Image Coordinates.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing;
using Leadtools.ImageProcessing.Core;
using Leadtools.ImageProcessing.Color;
using Leadtools.Dicom;
using Leadtools.Drawing;
using Leadtools.Controls;
using Leadtools.Svg;
public void RectangleFromImageExample()
{
RasterCodecs codecs = new RasterCodecs();
// Load an image that has BottomLeft ViewPerspective
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "ULAY1.BMP"));
LeadRect imageRectangle = new LeadRect(0, 0, image.Width - 1, image.Height - 1);
imageRectangle = image.RectangleFromImage(Leadtools.RasterViewPerspective.TopLeft, imageRectangle);
Console.WriteLine(string.Format("{0},{1},{2},{3}", imageRectangle.Left, imageRectangle.Top, imageRectangle.Right, imageRectangle.Bottom));
imageRectangle = new LeadRect(0, 0, image.Width - 1, image.Height - 1);
imageRectangle = image.RectangleToImage(Leadtools.RasterViewPerspective.TopLeft, imageRectangle);
Console.WriteLine(string.Format("{0},{1},{2},{3}", imageRectangle.Left, imageRectangle.Top, imageRectangle.Right, imageRectangle.Bottom));
image.Dispose();
codecs.Dispose();
}
static class LEAD_VARS
{
public const string ImagesDir = @"C:\LEADTOOLS23\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