←Select platform

CodecsRtfOptions Class

Summary

Provides extra options for loading RTF files as raster images.

Syntax

C#
VB
Java
C++
public class CodecsRtfOptions 
Public Class CodecsRtfOptions  
public class CodecsRtfOptions 
public ref class CodecsRtfOptions  

Example

C#
VB
using Leadtools; 
using Leadtools.Codecs; 
 
public void CodecsRtfOptionsExample() 
{ 
   RasterCodecs codecs = new RasterCodecs(); 
 
   string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Image1.rtf"); 
 
   // 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; 
 
   RasterImage image = codecs.Load(srcFileName); 
   codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "rtf.bmp"), RasterImageFormat.Bmp, image.BitsPerPixel); 
 
   // Clean up 
   image.Dispose(); 
   codecs.Dispose(); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images"; 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
 
Public Sub CodecsRtfOptionsExample() 
   Dim codecs As RasterCodecs = New RasterCodecs() 
 
   Dim srcFileName As String = Path.Combine(LEAD_VARS.ImagesDir, "Image1.rtf") 
 
   ' Setting new options. 
   codecs.Options.RasterizeDocument.Load.LeftMargin = 1.0 
   codecs.Options.RasterizeDocument.Load.TopMargin = 1.25 
   codecs.Options.RasterizeDocument.Load.PageWidth = 8.5 
   codecs.Options.RasterizeDocument.Load.PageHeight = 11.0 
   codecs.Options.RasterizeDocument.Load.BottomMargin = 1.0 
   codecs.Options.RasterizeDocument.Load.RightMargin = 1.25 
 
   Dim image As RasterImage = codecs.Load(srcFileName) 
   codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "rtf.bmp"), RasterImageFormat.Bmp, image.BitsPerPixel) 
 
   ' Clean up 
   image.Dispose() 
   codecs.Dispose() 
End Sub 
 
Public NotInheritable Class LEAD_VARS 
   Public Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images" 
End Class 

Requirements

Target Platforms

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Codecs Assembly