public InvertedPageCommandFlags Flags { get; set; }
@property (nonatomic, assign) LTInvertedPageCommandFlags flags;
public int getFlags();
public void setFlags(
int intValue
);
public:
property InvertedPageCommandFlags Flags {
InvertedPageCommandFlags get();
void set ( InvertedPageCommandFlags );
}
Flags # get and set (InvertedPageCommand)
One or more InvertedPageCommandFlags enumeration members ORed together.
If InvertedPageCommandFlags.Process is specified, then the image is auto-corrected if it is inverted and the value of the IsInverted property will be updated accordingly.
If InvertedPageCommandFlags.NoProcess is specified, then the image is only checked for inversion and the value of IsInverted updated without changing the image data.
For more information, refer to InvertedPageCommandFlags enumeration.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;
using Leadtools.ImageProcessing.Color;
public void InvertedPageCommandExample()
{
RasterCodecs codecs = new RasterCodecs();
// Get an image
string tifFileName = Path.Combine(LEAD_VARS.ImagesDir, "ocr1.tif");
string invertedImageFileName = Path.Combine(LEAD_VARS.ImagesDir, "ocr1_Inverted.tif");
string nonInvertedImageFileName = Path.Combine(LEAD_VARS.ImagesDir, "ocr1_NonInverted.tif");
RasterImage image = codecs.Load(tifFileName);
// The images should be non-inverted at the beginning, check
InvertedPageCommand invertedPage = new InvertedPageCommand(InvertedPageCommandFlags.NoProcess);
invertedPage.Run(image);
Console.WriteLine("Original image, inverted = {0}", invertedPage.IsInverted);
// Invert the image
InvertCommand invert = new InvertCommand();
invert.Run(image);
codecs.Save(image, invertedImageFileName, image.OriginalFormat, image.BitsPerPixel);
// Check again
invertedPage.Run(image);
Console.WriteLine("After running InvertCommand, inverted = {0}", invertedPage.IsInverted);
// Now run the command to un-invert the image
invertedPage.Flags = InvertedPageCommandFlags.Process;
invertedPage.Run(image);
// Now check the image again
invertedPage.Flags = InvertedPageCommandFlags.NoProcess;
invertedPage.Run(image);
Console.WriteLine("After running InvertedPageCommand, inverted = {0}", invertedPage.IsInverted);
codecs.Save(image, nonInvertedImageFileName, image.OriginalFormat, image.BitsPerPixel);
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