SKSvgCanvas.Create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Create(SKRect, SKWStream) | |
Create(SKRect, SKXmlWriter) |
Obsolete.
Creates a new instance of SKSvgCanvas which writes to the specified XML writer. |
Create(SKRect, Stream) |
Create(SKRect, SKWStream)
Create(SKRect, SKXmlWriter)
Caution
Use Create(SKRect, Stream) instead.
Creates a new instance of SKSvgCanvas which writes to the specified XML writer.
public static SkiaSharp.SKCanvas Create (SkiaSharp.SKRect bounds, SkiaSharp.SKXmlWriter writer);
[System.Obsolete("Use Create(SKRect, Stream) instead.")]
public static SkiaSharp.SKCanvas Create (SkiaSharp.SKRect bounds, SkiaSharp.SKXmlWriter writer);
Parameters
- bounds
- SKRect
The initial SVG viewport (viewBox attribute on the root SVG element).
- writer
- SKXmlWriter
The writer to receive the XML data.
Returns
Returns the new canvas.
- Attributes
Remarks
Ownership of the XML writer is not transfered to the canvas, but it must stay valid during the lifetime of the returned canvas.