←Select platform

CodecsTxtOptions Class

Summary

Provides extra options for loading TEXT files as raster or SVG images.

Syntax
C#
VB
C++
Java
public class CodecsTxtOptions 
Public Class CodecsTxtOptions  
public class CodecsTxtOptions 
public ref class CodecsTxtOptions  
Example
C#
using Leadtools; 
using Leadtools.Codecs; 
 
 
public void CodecsTxtOptionsExample() 
{ 
	RasterCodecs codecs = new RasterCodecs(); 
 
	string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.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; 
 
	codecs.Options.Txt.Load.FontColor = new RasterColor(255, 0, 0); 
	codecs.Options.Txt.Load.FontSize = 12; 
	codecs.Options.Txt.Load.Bold = true; 
	codecs.Options.Txt.Load.Enabled = true; 
 
	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:\LEADTOOLS21\Resources\Images"; 
} 
Requirements

Target Platforms

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

Leadtools.Codecs Assembly

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