C#
VB
Java
C++
Provides extra options for loading RTF files as raster images.
public class CodecsRtfOptions Public Class CodecsRtfOptions  public class CodecsRtfOptions public ref class CodecsRtfOptions  
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 upimage.Dispose();codecs.Dispose();}static class LEAD_VARS{public const string ImagesDir = @"C:\Users\Public\Documents\LEADTOOLS Images";}
Imports LeadtoolsImports Leadtools.CodecsPublic 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.0codecs.Options.RasterizeDocument.Load.TopMargin = 1.25codecs.Options.RasterizeDocument.Load.PageWidth = 8.5codecs.Options.RasterizeDocument.Load.PageHeight = 11.0codecs.Options.RasterizeDocument.Load.BottomMargin = 1.0codecs.Options.RasterizeDocument.Load.RightMargin = 1.25Dim image As RasterImage = codecs.Load(srcFileName)codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "rtf.bmp"), RasterImageFormat.Bmp, image.BitsPerPixel)' Clean upimage.Dispose()codecs.Dispose()End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
