public bool IsRotated { get; }
@property (nonatomic, assign, readonly) BOOL isRotated
public boolean isRotated();
public:
property bool IsRotated {
bool get();
}
IsRotated # get (RasterImage)
true if the image has a rotated ViewPerspective; false, otherwise.
The image data is considered rotated if the value of the ViewPerspective is one of the following:
Otherwise, the image is either basic (IsBasic) or flipped (IsFlipped).
For more information refer to Accounting for View Perspective.
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 IsBasicExample()
{
RasterCodecs codecs = new RasterCodecs();
RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "OCR1.TIF"));
string s = ("Is Mirrored " + image.IsMirrored + "\n");
s += ("Is Basic " + image.IsBasic + "\n");
s += ("Is Tiled " + image.IsTiled + "\n");
s += ("Is Global Memory " + image.IsGlobalMemory + "\n");
s += ("Is Gray " + image.IsGray + "\n");
s += ("No Region Clip " + image.NoRegionClip + "\n");
s += ("Transparent " + image.Transparent + "\n");
s += ("Transparent Color " + image.TransparentColor + "\n");
s += ("X resolution, Y Resolution (" + image.XResolution + ", " + image.YResolution + ") ");
Console.WriteLine(s);
image.Dispose();
codecs.Dispose();
}
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