Enumeration values that indicate whether to rotate the image according to the orientation angle. This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its members.
[FlagsAttribute()]public enum OrientationDetectionDataFlags
public:[FlagsAttribute]enum class OrientationDetectionDataFlags sealed
class OrientationDetectionDataFlags(Enum):None = 0ReturnAngleOnly = 1
| Value | Member | Description |
|---|---|---|
| 0x00000000 | None | Detect the orientation angle and rotate the image. |
| 0x00000001 | ReturnAngleOnly | Do not rotate the image. Use this flag to find the angle of orientation |
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing.Core;public void DetectDeskewOrientationCommandExample(){// Load an imageRasterCodecs codecs = new RasterCodecs();codecs.ThrowExceptionsOnInvalidImages = true;RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, @"Forms\Forms to be Recognized\OCR\FCC-107_OCR_Filled.tif"));// Prepare the commandDetectDeskewOrientationCommand command = new DetectDeskewOrientationCommand();// Detect/correct skew and orientation, filling with blackcommand.DeskewDetection.FillColor = RasterColor.Black;command.DeskewDetection.Flags = DeskewDetectionDataFlags.DocumentAndPictures | DeskewDetectionDataFlags.RotateBicubic;command.Flags = DetectDeskewOrientationCommandFlags.None;command.OrientationDetection.Flags = OrientationDetectionDataFlags.None;command.Run(image);}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
