←Select platform

IsMirrored Property

Summary
Determines whether the image data is mirrored.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public bool IsMirrored { get; } 
@property (nonatomic, assign, readonly) BOOL isMirrored 
public boolean isMirrored(); 
public: 
property bool IsMirrored { 
   bool get(); 
} 
IsMirrored # get  (RasterImage) 

Property Value

true if the image data is mirrored; false, otherwise.

Remarks

Mirrored data means the data is shared between this RasterImage and another object. When creating user-memory images for example, the IsMirrored and the IsConventionalMemory properties will both be true.

Example
C#
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"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.5.16
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.