An easy-to-use client-side Javascript library to export SVG graphics from web pages and download them as an SVG file, PDF, or raster image (JPEG, PNG) format. Originally created to export D3.js charts.
This library features:
- Exporting SVG DOM Element objects or serialized SVG string to SVG file, PNG, JPEG, PDF
- Setting custom size for exported image or graphic
- High resolution raster image, using
scale - Including external CSS styles in SVG
- Filtering out parts of the SVG by CSS selector
- Exporting text in custom embedded fonts
- Handling transparent background for JPEG format conversion
- Exporting SVGs that are hidden on the DOM (
display: none, SVGs in hidden modals, dropdowns or tabs, etc.) - Exporting SVGs containing images (
<image>tag)
Try it out here.
svg-exportJS has the following optional third-party dependencies:
- Canvg (if you need JPEG/PNG export)
- PDFKit, blob-stream and SVG-to-PDFKit (if you need PDF export).
Without the above dependencies, this library may only support SVG file exports.
Note that if you are using NPM to manage package installation and would like to use PDFKit for the browser, you may need to perform some additional steps with Browserify or Webpack, in addition to npm install pdfkit.
svg-exportJS is offered as a UMD or an ESM module, available in the dist folder in this repository, and as an NPM package.
The UMD module is available from this repository (see the dist/umd folder), or from CDNs such as jsdelivr.
Two versions are available:
- The main version is lightweight and requires installing dependencies as needed. It is included in the NPM package manager.
- The standalone version already pre-installs all dependencies packaged with the library for convenience, at the expense of being memory-heavy. It is excluded from the NPM package to reduce the package size.
Place the following scripts within the <head> tag in your html files (place dependencies first).
<!-- Optional dependency for JPEG and PNG exports -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/canvg/3.0.9/umd.js" integrity="sha512-Wu9XXg78PiNE0DI4Z80lFKlEpLq7yGjquc0I35Nz+sYmSs4/oNHaSW8ACStXBoXciqwTLnSINqToeWP3iNDGmQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<!-- Optional dependencies for PDF exports -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/pdfkit.standalone.js" integrity="sha256-41qk5dewLKulpzhP3H6G7mY+5q+vzxMaxolsOGmZD/8=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/index.js" integrity="sha256-bFrIR3MiIsKhM2EDZdTJ3eY7iSluq1W7e6dNVwScEYw=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/source.js" integrity="sha256-NaOoypZxJFnz2e4IeMtA9+UMZ5Fh85ljICcUts98jqY=" crossorigin="anonymous"></script>
<!-- svg-exportJS library -->
<script src="https://cdn.jsdelivr.net/npm/svg-exportjs-browser@latest/dist/umd/svg-export.umd.min.js"></script>Please note that the CDNs of the dependencies above may not be the most up-to-date. The latest source code can be found directly from the github projects, also linked above in the "Dependencies" section.
Place the following script within the <head> tag in your html files.
<!-- svg-exportJS library -->
<script src="https://cdn.jsdelivr.net/gh/sharonchoong/svg-exportJS@master/dist/umd/svg-export.umd.standalone.min.js"></script>That's it! It will come out-of-the-box with SVG, raster and PDF file export with no need to install the third-party dependencies.
The ESM module is available from the NPM package manager, from this repository, or from various CDNs such as jsdelivr and unpkg.
Make sure to also install third-party dependencies as needed (see the Dependencies section above). The ESM module is not pre-packaged with the optional third-party dependencies, so as to remain as lightweight as possible for various use cases.
npm install canvg
npm install svg-exportjs-browser
Then in your JS script:
import * as svgExport from "svg-exportjs-browser";
// or
import { downloadSvg, downloadPng, downloadJpeg } from "svg-exportjs-browser";Download the library as a file from the dist/esm folder in this repository and save it to your project, as well as any dependencies required. Then, import the module in your JS script.
import * as svgExport from "path/to/the/file/svg-export.esm.min.js";import * as svgExport from "https://cdn.jsdelivr.net/npm/svg-exportjs-browser@latest/dist/esm/svg-export.esm.min.js";Given the <svg> element:
<svg id="mysvg">...</svg>In Javascript:
await svgExport.downloadSvg(
document.getElementById("mysvg"), // SVG DOM Element object to be exported. Alternatively, a string of the serialized SVG can be passed
"chart title name", // chart title: file name of exported image
{ width: 200, height: 200 } // options (optional, please see below for a list of option properties)
);
await svgExport.downloadPng("<svg id=\"mysvg\"></svg>", "chart title name", {
width: 200,
height: 200,
});
await svgExport.downloadJpeg(svgElementObject, "chart title name");
await svgExport.downloadPdf(svgString, "chart title name");See index.html for an example of how to use.
- width (number) : the width of the resulting image exported, in pixels. Default is the SVG's width on the DOM
- height (number) : the height of the resulting image exported, in pixels. Default is the SVG's height on the DOM
- scale (number) : a multiple by which the SVG can be increased or decreased in size. For PNG and JPEG exports, if width, height and scale are not specified, scale is set to
10for a 10x enlargement to ensure that a higher resolution image is produced. Otherwise, the default scale is1 - useCSS (bool): if SVG styles are specified in stylesheet externally rather than inline, setting
truewill add references to such styles from the styles computed by the browser. If useCSS isfalse,currentColorwill be changed toblack. This setting only applies if the SVG is passed as a DOM Element object, not as a string. Set this tofalsewhenever possible to optimize performance. When set totrue, all elements in the SVG are iterated to obtain their computed styles, which can be costly for large SVGs (please read Optimizing for large SVGs below for more detail). Default istrue - excludeByCSSSelector (string): e.g.
[stroke='red'], [stroke='green'], [display='none'], .text-muted. Elements matching the specified CSS selector will not be included in the generated file. This can be used to remove unwanted/unsupported elements of the SVG from the exported file, or to optimize performance for large SVGs. Please read Optimizing for large SVGs and Not Supported below for more detail. - transparentBackgroundReplace (string): the color to be used to replace a transparent background in JPEG format export. Default is
white - allowCrossOriginImages (bool): If the SVG contains images, this option permits the use of images from foreign origins. Defaults to
false. Please read Images within SVG below for more detail. - pdfOptions
- pageLayout (object): e.g.
{ margin: 50, layout: "landscape" }. This is provided to PDFKit'saddPage. When the options width and height are not specified, a minimum size of 300x300 is used for the PDF page size; otherwise the page size wraps around the SVG size. Please see the PDFKit documentation for more info - addTitleToPage (bool): Default is
true - chartCaption (string) caption to appear at the bottom of the chart in the PDF. Default is no caption
- pdfTextFontFamily (string): Font family of title and caption (if applicable) in PDF. See here for a list of available fonts. Default is
Helvetica - pdfTitleFontSize (number): Default is
20 - pdfCaptionFontSize (number): Default is
14 - customFonts (array of objects): Optional argument for custom fonts. e.g.
[{ fontName: 'FakeFont', url: 'fonts/FakeFont.ttf'}]. Each object must have two properties:fontNamefor the font name that appears in the CSS/SVG, andurlfor the URL of the custom font file to be used in the PDF. A third propertystyleNamespecifying the style name to be used can be specified for multi-collection font files (.ttc and .dfont files)
- pageLayout (object): e.g.
Regarding embedded custom fonts used in the SVG element (using @font-face for example), please note that for SVG export, custom fonts only show correctly if the system opening the SVG file has the font installed. If this is not possible, please consider using one of the other file formats available.
This library supports exporting SVGs that contain images in an <image> tag. If you need to export such SVGs to raster images or PDFs, please make sure that you have the latest version of Canvg and SVG-to-PDFKit. If the images' href are external, the allowCrossOriginImages option must be set to true, and the image servers must be configured with the 'Access-Control-Allow-Origin' CORS policy.
- Set the
useCSSoption tofalsewhenever possible to optimize performance. When set totrue, all elements in the SVG are iterated to obtain their computed styles, which can be costly for large SVGs. - If you have no choice but to set
useCSStotruefor a large SVG, but it is causing slow performance or a frozen browser, you can also try filtering out unneeded elements within the SVG, using theexcludeByCSSSelectorsetting. For example, you could exclude all elements in the SVG that are styled asdisplay: none, exclude elements that have the attributefill=transparent, or exclude unneeded elements that have a specific class name.
Colors tested to work on all exported formats include CSS color names, HEX, RGB, RGBA and HSL.
Need to add SVG graphics to Office Word, Excel or Powerpoint presentations? SVG files can be inserted as a picture for non-pixelated graphics in Office 2016 or later, including Office 365.
- Set up package.json and publish to npm
- Emit TypeScript types
- Open the generated file in a new window/tab instead of downloading the file
Since foreignObject does not contain SVG, it is not supported.
Contributions are very welcome! Feel free to flag issues or pull requests.
Licensed under MIT. See LICENSE for more information.
Sharon Choong - https://sharonchoong.github.io/
Send me your cheers with a cup of coffee! Ko-Fi