LEADTOOLS Image File Support (Leadtools.Codecs assembly)
LEAD Technologies, Inc

CodecsRtfOptions Class

Example 





Members 
Provides extra options for loading RTF files as raster images. .NET support
Object Model
CodecsRtfOptions ClassCodecsRtfLoadOptions Class
Syntax
public class CodecsRtfOptions 
'Declaration
 
Public Class CodecsRtfOptions 
'Usage
 
Dim instance As CodecsRtfOptions
public sealed class CodecsRtfOptions 
function Leadtools.Codecs.CodecsRtfOptions()
public ref class CodecsRtfOptions 
Example
 
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
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";
}
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

CodecsRtfOptions Members
Leadtools.Codecs Namespace

 

 


Products | Support | Contact Us | Copyright Notices

© 2006-2012 All Rights Reserved. LEAD Technologies, Inc.