🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

angular-downloadsvg-directive

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
a

angular-downloadsvg-directive

AngularJS directive to download SVGs

0.2.0
latest
73

Supply Chain Security

100

Vulnerability

84

Quality

76

Maintenance

100

License

Version published
Maintainers
1
Created
Issues
0

angular-downloadsvg-directive

AngularJS directive to download an SVG element as an SVG or PNG file, including CSS defined styles.

Bower version NPM License

Features

  • Downloads SVG elements as an SVG or PNG file.
  • Downloads the first <svg> element by default.
  • Download <svg> by element or selector.
  • Copies SVG element styles as rendered in the browser, including styles defined in Cascading Style Sheets (CSS).
  • Copies only SVG relevant and non-default styles. See here.
  • Computed styles are in-lined for maximum compatibility.

Install

npm

npm install angular-downloadsvg-directive

Bower

bower install angular-downloadsvg-directive

jspm

jspm install npm:angular-downloadsvg-directive

Usage

  • Include the angular-downloadsvg-directive.js in app. For bower at bower_components/angular-downloadsvg-directive/angular-downloadsvg-directive.js.
  • Add hc.downloader as a module dependency to your app.

For maximum compatibility across browsers include eligrey/FileSaver.js/ and eligrey/canvas-toBlob.js. See Compatibility-Chart for more information.

As a directive

<button svg-download="#chart" title="mysvg">Download as SVG</button>
<button svg-download="#chart" title="mysvg" type="png">Download as PNG</button>

By default the downloaded file filename will be the title attribute plus ".svg" (or "png"). An optional filename attribute can also be given. See documentation

License

Copyright (c) 2013-2015 Jayson Harshbarger

MIT License

FAQs

Package last updated on 31 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts