public static SvgDocument LoadFromStream(Stream stream,SvgLoadOptions options)
Public Shared Function LoadFromStream( _ByVal stream As Stream, _ByVal options As SvgLoadOptions _) As SvgDocument
- (nullable instancetype)initWithStream:(LTLeadStream *)streamoptions:(nullable LTSvgLoadOptions *)optionserror:(NSError **)error
public:static SvgDocument^ LoadFromStream(Stream^ stream,SvgLoadOptions^ options)
stream
The stream containing SVG data
options
Options to use during load. If this parameter is null, then a default SvgLoadOptions object will be used.
The SvgDocument object this method creates.
To get and set information about a document's bounds and resolution, refer to SVG Size, Bounds and Flat.
This example will load a SVG file from a web stream and show its properties
using Leadtools;using Leadtools.Codecs;using Leadtools.Drawing;using Leadtools.Forms.DocumentWriters;using Leadtools.Svg;using LeadtoolsExamples.Common;public void SvgLoadFromStreamExample(){// Assume the SVG files are located herestring addressTemplate = @"http://localhost/images/examples/page1.svg";// Get a stream to itWebRequest request = WebRequest.Create(new Uri(addressTemplate));using (WebResponse response = request.GetResponse()){Stream stream = response.GetResponseStream();// Load itusing (SvgDocument document = SvgDocument.LoadFromStream(stream, null)){// Prepare itif (!document.IsFlat)document.Flat(null);if (!document.Bounds.IsValid)document.CalculateBounds(false);// Show its propertiesConsole.WriteLine("Bounds: " + document.Bounds.Bounds);Console.WriteLine("Resolution: " + document.Bounds.Resolution);}}}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.DrawingImports Leadtools.Forms.DocumentWritersImports Leadtools.SvgPublic Shared Sub SvgLoadFromStreamExample()' Assume the SVG files are located hereDim addressTemplate As String = "http://localhost/images/examples/page1.svg"' Get a stream to itDim request As WebRequest = WebRequest.Create(New Uri(addressTemplate))Using response As WebResponse = request.GetResponse()Dim stream As Stream = response.GetResponseStream()' Load itUsing document As SvgDocument = SvgDocument.LoadFromStream(stream, Nothing)' Prepare itIf Not document.IsFlat Thendocument.Flat(Nothing)End IfIf Not document.Bounds.IsValid Thendocument.CalculateBounds(False)End If' Show its propertiesConsole.WriteLine("Bounds: " + document.Bounds.Bounds.ToString())Console.WriteLine("Resolution: " + document.Bounds.Resolution.ToString())End UsingEnd UsingEnd Sub
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document
