←Select platform

InvertedTextCommand Constructor(InvertedTextCommandFlags,int,int,int,int)

Summary
Initializes a new InvertedTextCommand class object with explicit parameters.
Syntax
C#
Objective-C
C++/CLI
Java
Python
- (instancetype)initWithFlags:(LTInvertedTextCommandFlags)flags minimumInvertWidth:(NSInteger)minimumInvertWidth minimumInvertHeight:(NSInteger)minimumInvertHeight minimumBlackPercent:(NSInteger)minimumBlackPercent maximumBlackPercent:(NSInteger)maximumBlackPercent NS_DESIGNATED_INITIALIZER; 
public InvertedTextCommand( 
   int flags,  
   int minimumInvertWidth,  
   int minimumInvertHeight,  
   int minimumBlackPercent,  
   int maximumBlackPercent 
) 

Parameters

flags
Flags that determine the behavior of the inverted text removal process.

minimumInvertWidth
The minimum width of an area that is considered to be inverted text. If the InvertedTextCommandFlags.UseDpi flag is set, units are in thousandths of an inch, otherwise units are in pixels.

minimumInvertHeight
The minimum height of an area that is considered to be inverted text. If the InvertedTextCommandFlags.UseDpi flag is set, units are in thousandths of an inch, otherwise units are in pixels.

minimumBlackPercent
The minimum percent of total pixels in an inverted text area that must be black. Areas with a lower percent of black pixels are not considered.

maximumBlackPercent
The maximum percent of total pixels in an inverted text area that must be black. Areas with a higher percent of black pixels are not considered.

Example

Run the InvertedTextCommand on an image.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Core; 
 
public void InvertedTextConstructorExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "Clean.tif")); 
 
   // Prepare the command 
   InvertedTextCommand command = new InvertedTextCommand(InvertedTextCommandFlags.UseDpi, 5000, 500, 70, 95); 
   command.InvertedText += new EventHandler<InvertedTextCommandEventArgs>(InvertedTextEvent_S2); 
   command.Run(image); 
 
} 
 
private void InvertedTextEvent_S2(object sender, InvertedTextCommandEventArgs e) 
{ 
   MessageBox.Show("Size " + "( " + e.BoundingRectangle.Left + ", " + e.BoundingRectangle.Top + ") - " + "( " + e.BoundingRectangle.Right + ", " + e.BoundingRectangle.Bottom + ")" + 
      "\n Black Count " + e.BlackCount.ToString() + 
      "\n White Count " + e.WhiteCount.ToString()); 
   e.Status = RemoveStatus.Remove; 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.ImageProcessing.Core Assembly

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