Error processing SSI file
LEADTOOLS Image File Support (Leadtools.Codecs assembly)

Show in webframe

LoadSvgAsync(Uri,Int32,CodecsLoadSvgOptions,Object) Method








The Uri containing the input image data.
The 1-based page number.
The options used for loading SVG. This can be null.
A user-defined object that is passed to the method invoked when the asynchronous operation completes.
Loads a page from a URI containing an image, document or vector file as SVG asynchronously.
Syntax
'Declaration
 
Public Overloads Sub LoadSvgAsync( _
   ByVal uri As Uri, _
   ByVal pageNumber As Integer, _
   ByVal options As CodecsLoadSvgOptions, _
   ByVal userState As Object _
) 
'Usage
 
Dim instance As RasterCodecs
Dim uri As Uri
Dim pageNumber As Integer
Dim options As CodecsLoadSvgOptions
Dim userState As Object
 
instance.LoadSvgAsync(uri, pageNumber, options, userState)
 function Leadtools.Codecs.RasterCodecs.LoadSvgAsync(Uri,Int32,CodecsLoadSvgOptions,Object)( 
   uri ,
   pageNumber ,
   options ,
   userState 
)

Parameters

uri
The Uri containing the input image data.
pageNumber
The 1-based page number.
options
The options used for loading SVG. This can be null.
userState
A user-defined object that is passed to the method invoked when the asynchronous operation completes.
Remarks

Use this method to load a page from any supported image, document or vector file as SVG (Scalable Vector Graphics). For more information refer LoadSvg(string fileName, int pageNumber, CodecsLoadSvgOptionsoptions).

.

The RasterCodecs class supports loading image data as SVG asynchronously using the LoadSvgAsync methods. When calling any of these methods, the caller thread will not be blocked and the method will return instantly. When the RasterCodecs object finishes loading the SVG page (or when an error occur), the LoadSvgAsyncCompleted will occur.

The LoadSvgAsyncCompleted event data will contain the SVG page in the CodecsLoadSvgAsyncCompletedEventArgs property.

To determine whether a file or stream can be loaded as SVG, use CanLoadSvg(string fileName) or CanLoadSvg(Stream stream).

To load as SVG asynchronously from a file, use LoadSvgAsync(string fileName, int pageNumber, CodecsLoadSvgOptions options, object userState).

To load as SVG asynchronously from a stream, use LoadSvgAsync(Stream stream, int pageNumber, CodecsLoadSvgOptions options, object userState).

To load as SVG from a file or stream directly, use LoadSvg.

For more information, refer to Working With SVG.

Example

For an example, refer to LoadSvgAsyncCompleted.

Requirements

Target Platforms

See Also

Reference

RasterCodecs Class
RasterCodecs Members
Overload List
Leadtools.ISvgDocument
Working With SVG
SVG Size, Bounds and Flat
SVG Rendering

Error processing SSI file