←Select platform

IsFlipped Property

Summary
Determines whether the image has a flipped ViewPerspective.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public bool IsFlipped { get; } 
@property (nonatomic, assign, readonly) BOOL isFlipped 
public boolean isFlipped(); 
public: 
property bool IsFlipped { 
   bool get(); 
} 
IsFlipped # get  (RasterImage) 

Property Value

true if the image has a flipped ViewPerspective; false, otherwise.

Remarks

The image data is considered flipped if the value of the ViewPerspective is one of the following:

Otherwise, the image is either basic (IsBasic) or rotated (IsRotated).

For more information refer to Accounting for View Perspective.

Example
C#
Java
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:\LEADTOOLS23\Resources\Images"; 
} 
 
import java.io.File; 
import java.io.FileInputStream; 
import java.io.IOException; 
import java.io.InputStream; 
import java.util.ArrayList; 
import java.util.List; 
 
import org.junit.*; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.*; 
 
import leadtools.*; 
import leadtools.codecs.*; 
import leadtools.imageprocessing.core.*; 
import leadtools.svg.*; 
import leadtools.imageprocessing.CloneCommand; 
import leadtools.imageprocessing.FillCommand; 
import leadtools.imageprocessing.FlipCommand; 
import leadtools.imageprocessing.GrayscaleCommand; 
import leadtools.imageprocessing.color.InvertCommand; 
import leadtools.imageprocessing.color.PosterizeCommand; 
 
 
public void isBasicExample() { 
   final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images"; 
   RasterCodecs codecs = new RasterCodecs(); 
   RasterImage image = codecs.load(combine(LEAD_VARS_IMAGES_DIR, "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.getNoRegionClip() + "\n"); 
   s += ("Transparent " + image.getTransparent() + "\n"); 
   s += ("Transparent Color " + image.getTransparentColor() + "\n"); 
   s += ("X resolution, Y Resolution (" + image.getXResolution() + ", " + image.getYResolution() + ") "); 
   System.out.println(s); 
 
   assertTrue("Basic property unchecked", image.isBasic() == true); 
 
   // Clean up 
   image.dispose(); 
   codecs.dispose(); 
} 
Requirements

Target Platforms

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

Leadtools Assembly

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