public RasterColor Highlight { get; set; }
@property (nonatomic, copy) LTRasterColor *highlight;
public RasterColor getHighlight()
public void setHighlight(RasterColor highlightColor)
public:
property RasterColor Highlight {
RasterColor get();
void set ( RasterColor );
}
Highlight # get and set (CodecsTxtLoadOptions)
The default value is #FFFFFFFF
The text highlight color.
Highlight is the color used as background for the text paragraphs found in the file. If you do not want to show the highlight color, set its value to the same as FontColor or BackColor.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;
public void CodecsTxtOptionsExample()
{
RasterCodecs codecs = new RasterCodecs();
string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "test.txt");
// Setting new options.
codecs.Options.RasterizeDocument.Load.LeftMargin = 1.00;
codecs.Options.RasterizeDocument.Load.TopMargin = 1.25;
codecs.Options.RasterizeDocument.Load.PageWidth = 8.50;
codecs.Options.RasterizeDocument.Load.PageHeight = 11.00;
codecs.Options.RasterizeDocument.Load.BottomMargin = 1.00;
codecs.Options.RasterizeDocument.Load.RightMargin = 1.25;
// CodecsTxtOptions & CodecsTxtLoadOptions reference
codecs.Options.Txt.Load.BackColor = RasterColor.White;
codecs.Options.Txt.Load.FaceName = "Courier New";
codecs.Options.Txt.Load.FontColor = new RasterColor(255, 0, 0);
codecs.Options.Txt.Load.Highlight = RasterColor.White;
codecs.Options.Txt.Load.FontSize = 12;
codecs.Options.Txt.Load.Italic = false;
codecs.Options.Txt.Load.Strikethrough = false;
codecs.Options.Txt.Load.Underline = false;
codecs.Options.Txt.Load.Bold = true;
codecs.Options.Txt.Load.Enabled = true;
codecs.Options.Txt.Load.TabSize = 3;
RasterImage image = codecs.Load(srcFileName);
codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "txt.bmp"), RasterImageFormat.Bmp, image.BitsPerPixel);
// Clean up
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