Skip to content

loadSVGFromURL

loadSVGFromURL(url, reviver?, options?): Promise<SVGParsingOutput>

Takes url corresponding to an SVG document, and parses it into a set of fabric objects. Note that SVG is fetched via XMLHttpRequest, so it needs to conform to SOP (Same Origin Policy)

Parameters

url: string

where the SVG is

reviver?: TSvgReviverCallback

Extra callback for further parsing of SVG elements, called after each fabric object has been created. Takes as input the original svg element and the generated FabricObject as arguments. Used to inspect extra properties not parsed by fabric, or extra custom manipulation

options?: LoadImageOptions = {}

Object containing options for parsing

Returns

Promise<SVGParsingOutput>

Member Of

fabric

Defined in

src/parser/loadSVGFromURL.ts:21