C# 클래스 Svg2Xaml.SvgReader

Provides methods to read (and render) SVG documents.
파일 보기 프로젝트 열기: jogibear9988/svg2xaml 1 사용 예제들

공개 메소드들

메소드 설명
Load ( Stream stream ) : System.Windows.Media.DrawingImage

Loads an SVG document and renders it into a DrawingImage.

Load ( Stream stream, SvgReaderOptions options ) : System.Windows.Media.DrawingImage

Loads an SVG document and renders it into a DrawingImage.

Load ( XmlReader reader ) : System.Windows.Media.DrawingImage

Loads an SVG document and renders it into a DrawingImage.

Load ( XmlReader reader, SvgReaderOptions options ) : System.Windows.Media.DrawingImage

Loads an SVG document and renders it into a DrawingImage.

Load ( string uri, SvgReaderOptions options ) : System.Windows.Media.DrawingImage

Loads an SVG document and renders it into a DrawingImage.

메소드 상세

Load() 공개 정적인 메소드

Loads an SVG document and renders it into a DrawingImage.
public static Load ( Stream stream ) : System.Windows.Media.DrawingImage
stream System.IO.Stream /// A to read the XML structure of the SVG /// document. ///
리턴 System.Windows.Media.DrawingImage

Load() 공개 정적인 메소드

Loads an SVG document and renders it into a DrawingImage.
public static Load ( Stream stream, SvgReaderOptions options ) : System.Windows.Media.DrawingImage
stream System.IO.Stream /// A to read the XML structure of the SVG /// document. ///
options SvgReaderOptions /// to use for parsing respectively /// rendering the SVG document. ///
리턴 System.Windows.Media.DrawingImage

Load() 공개 정적인 메소드

Loads an SVG document and renders it into a DrawingImage.
public static Load ( XmlReader reader ) : System.Windows.Media.DrawingImage
reader XmlReader /// A to read the XML structure of the SVG /// document. ///
리턴 System.Windows.Media.DrawingImage

Load() 공개 정적인 메소드

Loads an SVG document and renders it into a DrawingImage.
public static Load ( XmlReader reader, SvgReaderOptions options ) : System.Windows.Media.DrawingImage
reader XmlReader /// A to read the XML structure of the SVG /// document. ///
options SvgReaderOptions /// to use for parsing respectively /// rendering the SVG document. ///
리턴 System.Windows.Media.DrawingImage

Load() 공개 정적인 메소드

Loads an SVG document and renders it into a DrawingImage.
public static Load ( string uri, SvgReaderOptions options ) : System.Windows.Media.DrawingImage
uri string /// A to read the XML structure of the SVG /// document. ///
options SvgReaderOptions /// to use for parsing respectively /// rendering the SVG document. ///
리턴 System.Windows.Media.DrawingImage