VectSharp
2.2.1
A light library for C# vector graphics
|
Provides a method to parse an image URI into a page. More...
Static Public Member Functions | |
static Func< string, bool, Page > | Parser (Func< string, bool, Page > parseSVG) |
Parses an image URI into a page. This is intended to replace the default image URI interpreter in VectSharp.SVG.Parser.ParseImageURI . To do this, use something like: More... | |
Provides a method to parse an image URI into a page.
Definition at line 29 of file ImageURIParser.cs.
|
static |
Parses an image URI into a page. This is intended to replace the default image URI interpreter in VectSharp.SVG.Parser.ParseImageURI
. To do this, use something like:
VectSharp.SVG.Parser.ParseImageURI = VectSharp.MuPDFUtils.ImageURIParser.Parser(VectSharp.SVG.Parser.ParseSVGURI);
parseSVG | A function to parse an SVG image uri into a page. You should pass VectSharp.SVG.Parser.ParseSVGURI as this argument. |
Definition at line 37 of file ImageURIParser.cs.