GithubHelp home page GithubHelp logo

dom-to-png's Introduction

dom-to-png

Middleware for converting DOM to a downloaded PNG

Set up your express server to handle a POST, using a urlencoded body parser

var bodyParser = require('body-parser'),
  domToPng = require('dom-to-png'),
  express = require('express');

var server = express();
server.post('/image', bodyParser.urlencoded({extended: true, limit: '1mb'}), domToPng);

server.listen(3001, function () {
	console.log('Started');
});

Issue a POST to the endpoint that was created above, where the formdata includes a field for markup, which has the DOM that you would like to download as an image.

The browser should initiate a download of that image.

<form method="POST" name="downloadImage" action="/image" enctype="application/x-www-form-urlencoded">
 <button onclick="downloadImage.submit()">Download</button>
 <input type="hidden" value="<div>Hello</div>" name="markup">
</form>

dom-to-png's People

Contributors

nsand avatar

Stargazers

 avatar

Watchers

 avatar  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.