Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
CodecsRtfOptions Class
See Also  Members   Example 
Leadtools.Codecs Namespace : CodecsRtfOptions Class



Provides extra options for loading RTF files as raster images.

Object Model


Syntax

Visual Basic (Declaration) 
Public Class CodecsRtfOptions 
Visual Basic (Usage)Copy Code
Dim instance As CodecsRtfOptions
C# 
public class CodecsRtfOptions 
C++/CLI 
public ref class CodecsRtfOptions 

Example

Visual BasicCopy Code
Public Sub CodecsRtfOptionsExample()
   RasterCodecs.Startup()
   Dim codecs As RasterCodecs = New RasterCodecs()

   Dim srcFileName As String = LeadtoolsExamples.Common.ImagesPath.Path + "Image1.rtf"

   ' Setting new options.
   codecs.Options.Rtf.Load.TopMargin = 1.5
   codecs.Options.Rtf.Load.BottomMargin = 1.5
   codecs.Options.Rtf.Load.LeftMargin = 1
   codecs.Options.Rtf.Load.RightMargin = 1

   Dim image As RasterImage = codecs.Load(srcFileName)
   codecs.Save(image, LeadtoolsExamples.Common.ImagesPath.Path + "rtf.bmp", RasterImageFormat.Bmp, image.BitsPerPixel)

   ' Clean up
   image.Dispose()
   codecs.Dispose()
   RasterCodecs.Shutdown()
End Sub
C#Copy Code
public void CodecsRtfOptionsExample() 

   RasterCodecs.Startup(); 
   RasterCodecs codecs = new RasterCodecs(); 
 
   string srcFileName = LeadtoolsExamples.Common.ImagesPath.Path + "Image1.rtf"; 
 
   // Setting new options. 
   codecs.Options.Rtf.Load.TopMargin = 1.5; 
   codecs.Options.Rtf.Load.BottomMargin = 1.5; 
   codecs.Options.Rtf.Load.LeftMargin = 1; 
   codecs.Options.Rtf.Load.RightMargin = 1; 
 
   RasterImage image = codecs.Load(srcFileName); 
   codecs.Save(image,  LeadtoolsExamples.Common.ImagesPath.Path + "rtf.bmp", RasterImageFormat.Bmp, image.BitsPerPixel); 
 
   // Clean up 
   image.Dispose(); 
   codecs.Dispose(); 
   RasterCodecs.Shutdown(); 
}

Inheritance Hierarchy

System.Object
   Leadtools.Codecs.CodecsRtfOptions

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also