Code Monkey home page Code Monkey logo

wak-rsvg's Introduction

About

Wakanda module to create PDF or PNG from SVG.

Example

var modulesFolder = FileSystemSync('Modules');
var svg = require(modulesFolder.path + 'rsvg');

var inSVGPath = getFolder().path + 'Resources/sample.svg';
var outPDFPath = FileSystemSync('Desktop').path + 'sample.pdf';
var outPNGPath = FileSystemSync('Desktop').path + 'sample.png';

//example 1: use file for input and output

var options = {
	'input':inSVGPath,	
	'output':outPNGPath
	};

svg.toPNG(null, options);
	
//example 2: use Buffer for input, BLOB for output

var options = {};
		
var src = File(inSVGPath);
src = src.exists ? BinaryStream(src) : null;
src = src ? src.getBuffer(src.getSize()) : null;

var result = svg.toPDF(src, options);

var out = BinaryStream(outPDFPath, 'write');
out.putBlob(result.console.stdOut);
out.close();

Vaild properties for the options object are:

  • dpi_x (number)
  • dpi_y (number)
  • zoom_x (number)
  • zoom_y (number)
  • width (number)
  • height (number)
  • keep_aspect_ratio (boolean)
  • base_url (string)
  • input (string)
  • output (string)

Example (HTML)

  1. Open the file "index.html" in the Web Folder.
  2. Drag and drop an SVG; there is a sample document in /Resources/sample.pdf.
  3. A link "Open PDF" will appear.
  4. Click it. The PDF will show in a new browser tab. (tested Safari, FireFox, Chrome).

wak-rsvg's People

Contributors

miyako avatar

Watchers

Antony Ingram avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.