public bool Wrap { get; set; }
public boolean isWrap()
public void setWrap(boolean Wrap)
Wrap # get and set (CodecsTxtLoadOptions)
Value | Description |
---|---|
true | To split lines of text into several lines as they cannot fit in a single row. The default value is true. |
false | To truncate long lines of text. |
using Leadtools;
using Leadtools.Codecs;
using Leadtools.ImageProcessing.Core;
// Make sure the source file has at least one long line of text to see the effect of the Wrap property.
// Look at the result with 100% scale factor to see the effect of the AntiAliasing property.
public void CodecsTxtOptionsAntiAliasingExample()
{
string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "test.txt");
using (RasterCodecs codecs = new RasterCodecs())
{
/* Load the text file using the defaults (AntiAliasing + Wrap) */
using (RasterImage image = codecs.Load(srcFileName))
codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "txt-Default.png"), RasterImageFormat.Png, 0);
/* Load the text file with no AntiAliasing + no Wrap */
codecs.Options.Txt.Load.AntiAliasing = CodecsTxtAntiAliasing.Off;
codecs.Options.Txt.Load.Wrap = false;
using (RasterImage image = codecs.Load(srcFileName))
codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "txt-NoAntiAlias-NoWrap.png"), RasterImageFormat.Png, 0);
}
}
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