←Select platform

ISvgDocument Interface

Summary
Defines an SVG document.
Syntax
C#
VB
Objective-C
C++
Java
public interface ISvgDocument : IDisposable, ISerializable 
Public Interface ISvgDocument  
   Inherits System.IDisposable, System.Runtime.Serialization.ISerializable  
@protocol ISvgDocument <NSObject> 
public interface ISvgDocument 
public interface class ISvgDocument : public System.IDisposable, System.Runtime.Serialization.ISerializable   
Remarks

The SvgDocument class implements ISvgDocument. You should always cast ISvgDocument to SvgDocument to access the actual properties/methods of the SVG document class.

The interface is used by the LEADTOOLS framework to minimize dependencies between the various assemblies. For example, the Leadtools.Codecs.RasterCodecs.LoadSvg method (define in Leadtools.Codecs.dll) returns Leadtools.ISvgDocument (defined in Leadtools.dll) instead of Leadtools.Svg.SvgDocument (defined in Leadtools.Svg.dll). This way, Leadtools.Codecs.dll does not have a dependency on Leadtools.Svg.dll if SVG functionality is not required by your application.

For more information, refer to Working With SVG.

Example

This example will load a PDF file as SVG and save it to disk

C#
VB
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Core; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Dicom; 
using Leadtools.Drawing; 
using Leadtools.Controls; 
using Leadtools.Svg; 
 
 
public static void SvgDocumentExample() 
{ 
	// The source PDF file 
	string srcFileName = Path.Combine(LEAD_VARS.ImagesDir, "Leadtools.pdf"); 
 
	using (var codecs = new RasterCodecs()) 
	{ 
		// Set 300 as the default value for loading document files 
		codecs.Options.RasterizeDocument.Load.Resolution = 300; 
 
		// get the number of pages 
		int pageCount = codecs.GetTotalPages(srcFileName); 
 
		for (int pageNumber = 1; pageNumber <= pageCount; pageNumber++) 
		{ 
			// Load this page as SVG using default options 
			using (SvgDocument svgDocument = codecs.LoadSvg(srcFileName, pageNumber, null) as SvgDocument) 
			{ 
				// Save it to disk 
				string dstFileName = Path.Combine(LEAD_VARS.ImagesDir, string.Format("Page{0}.svg", pageNumber)); 
				svgDocument.SaveToFile(dstFileName, null); 
			} 
		} 
	} 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS21\Resources\Images"; 
} 
Imports Leadtools 
Imports Leadtools.Codecs 
Imports Leadtools.ImageProcessing 
Imports Leadtools.ImageProcessing.Core 
Imports Leadtools.ImageProcessing.Color 
Imports Leadtools.Controls 
Imports Leadtools.Dicom 
Imports Leadtools.Drawing 
Imports Leadtools.Svg 
 
Public Shared Sub SvgDocumentExample() 
   ' The source PDF file 
   Dim srcFileName As String = Path.Combine(Common.ImagesPath.Path, "Leadtools.pdf") 
 
   Using codecs As New RasterCodecs() 
      ' Set 300 as the default value for loading document files 
      codecs.Options.RasterizeDocument.Load.Resolution = 300 
 
      ' get the number of pages 
      Dim pageCount As Integer = codecs.GetTotalPages(srcFileName) 
 
      For pageNumber As Integer = 1 To pageCount 
         ' Load this page as SVG using default options 
         Using svgDocument As SvgDocument = DirectCast(codecs.LoadSvg(srcFileName, pageNumber, Nothing), SvgDocument) 
 
            ' Save it to disk 
            Dim dstFileName As String = Path.Combine(Common.ImagesPath.Path, String.Format("Page{0}.svg", pageNumber)) 
            svgDocument.SaveToFile(dstFileName, Nothing) 
         End Using 
      Next 
   End Using 
End Sub 
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 Assembly

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