[]
Saves the page to a stream in SVG format.
public void SaveAsSvg(Stream stream, ImageOutputSettings options = null, XmlWriterSettings xmlSettings = null)
Public Sub SaveAsSvg(stream As Stream, Optional options As ImageOutputSettings = Nothing, Optional xmlSettings As XmlWriterSettings = Nothing)
Type | Name | Description |
---|---|---|
Stream | stream | The output stream. |
ImageOutputSettings | options | Options that allow customizing the output image. |
XmlWriterSettings | xmlSettings | The output XML formatting settings. |
Saves the current page to a file in SVG format.
public void SaveAsSvg(string filePath, ImageOutputSettings options = null, XmlWriterSettings xmlSettings = null)
Public Sub SaveAsSvg(filePath As String, Optional options As ImageOutputSettings = Nothing, Optional xmlSettings As XmlWriterSettings = Nothing)
Type | Name | Description |
---|---|---|
string | filePath | The output file path. |
ImageOutputSettings | options | Options that allow customizing the output image. |
XmlWriterSettings | xmlSettings | The output XML formatting settings. |