https://github.com/fwd/render
A Node.js library that generates Images from HTML
https://github.com/fwd/render
Last synced: 3 months ago
JSON representation
A Node.js library that generates Images from HTML
- Host: GitHub
- URL: https://github.com/fwd/render
- Owner: fwd
- Created: 2020-08-13T14:14:15.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-05T02:45:37.000Z (about 3 years ago)
- Last Synced: 2025-01-07T10:11:17.546Z (4 months ago)
- Language: JavaScript
- Size: 122 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
@fwd/render 🌄
> A Node.js library that generates images from HTML
## Description
This module exposes a function that generates images (png, jpeg) from HTML. It uses puppeteer in headless mode to achieve it. Additionally, it embarks [Handlebars](https://handlebarsjs.com/) to provide a way to add logic in your HTML.
## Install
```sh
npm install @fwd/render
# or
yarn add @fwd/render
```## Usage
- [Simple example](#simple-example)
- [TypeScript Support](#typescript-support)
- [Options](#options)
- [Setting output image resolution](#setting-output-image-resolution)
- [Example with Handlebars](#example-with-handlebars)
- [Dealing with images](#dealing-with-images)
- [Using the buffer instead of saving to disk](#using-the-buffer-instead-of-saving-to-disk)
- [Generating multiple images](#generating-multiple-images)### Simple example
```js
const render = require('@fwd/render')
render({
output: './image.png',
html: 'Hello world!'
}).then(() => console.log('The image was created successfully!'))```
### TypeScript support
Types are included in the package. Enable the `esModuleInterop` compiler flag then change all references of `require` with `import` statements and you should be good to go:
```ts
import render from '@fwd/render'
```### Options
List of all available options:
| option | description | type | required |
|-------------------------|-------------------------------------------------------------------------------------------------|----------------------------|-------------|
| output | The ouput path for generated image | string | optional |
| html | The html used to generate image content | string | required |
| type | The type of the generated image | jpeg or png (default: png) | optional |
| quality | The quality of the generated image (only applicable to jpg) | number (default: 80) | optional |
| content | If provided html property is considered an handlebars template and use content value to fill it | object or Array | optional |
| waitUntil | Define when to consider markup succeded. [Learn more](https://github.com/puppeteer/puppeteer/blob/8370ec88ae94fa59d9e9dc0c154e48527d48c9fe/docs/api.md#pagesetcontenthtml-options). | string or Array (default: networkidle0) | optional |
| puppeteerArgs | The puppeteerArgs property let you pass down custom configuration to puppeteer. [Learn more](https://github.com/puppeteer/puppeteer/blob/8370ec88ae94fa59d9e9dc0c154e48527d48c9fe/docs/api.md#puppeteerlaunchoptions). | object | optional |
| transparent | The transparent property lets you generate images with transparent background (for png type). | boolean | optional |
| encoding | The encoding property of the image. Options are `binary` (default) or `base64`. | string | optional |### Setting output image resolution
`@fwd/render` takes a screenshot of the body tag's content. If you want to set output image's resolution you need to set its dimension using CSS like in the following example.
```js
const render = require('@fwd/render')render({
output: './image.png',
html: `
body {
width: 2480px;
height: 3508px;
}
Hello world!
`
}).then(() => console.log('The image was created successfully!'))
```### Example with Handlebars
[Handlerbars](https://handlebarsjs.com/) is a templating language. It generates HTML from a template and an input object. In the following example we provide a template to `@fwd/render` and a content object to fill the template.
```js
const render = require('@fwd/render')render({
output: './image.png',
html: 'Hello {{name}}!',
content: { name: 'you' }
}).then(() => console.log('The image was created successfully!'))
```[Handlebars](https://handlebarsjs.com/) provides a lot of expressions to handle common use cases like conditions or loops.
### Dealing with images
If you want to display an image which is stored remotely do it as usual. In case your image is stored locally I recommend having your image in `base64`. Then you need to pass it to the template with the content property. Here is an example:
```js
const render = require('@fwd/render')
const fs = require('fs');const image = fs.readFileSync('./image.jpg');
const base64Image = new Buffer.from(image).toString('base64');
const dataURI = 'data:image/jpeg;base64,' + base64Imagerender({
output: './image.png',
html: '',
content: { imageSource: dataURI }
})
```### Using the buffer instead of saving to disk
If you don't want to save the image to disk and would rather do something with it immediately, you can use the returned value instead! The example below shows how you can generate an image and send it back to a client via using [express](https://github.com/expressjs/express).
```js
const server = require('@fwd/server');
const render = require('@fwd/render');server.get(`/api/tweet/render`, async function(req, res) {
const image = await render({
html: 'Check out what I just did! #cool'
});
res.writeHead(200, { 'Content-Type': 'image/png' });
res.end(image, 'binary');
});
server.start()
```### Generating multiple images
If you want to generate multiple images in one call you must provide an array to the content property.
#### Saving to disk
To save on the disk you must provide the output property on each object in the content property.
```js
render({
html: 'Hello {{name}}!',
content: [
{ name: 'Pierre', output: './image1.png' },
{ name: 'Paul', output: './image2.png' },
{ name: 'Jacques', output: './image3.png' }
]
}).then(() => console.log('The images were created successfully!'))
```#### Using buffers
If you don't want to save the images to disk you can use the returned value instead. It returns an array of Buffer objects.
```js
const images = await render({
html: 'Hello {{name}}!',
content: [
{ name: 'Pierre' },
{ name: 'Paul' },
{ name: 'Jacques' }
]
})
```## Author
👤 **Forward Miami**
* Website: [https://forward.miami](https://forward.miami)
* Github: [@forwardmiami](https://github.com/forwardmiami)## 🤝 Contributing
Contributions, issues and feature requests are welcome!
Feel free to check [issues page](https://github.com/forwardmiami/render/issues).## Show your support
Give a ⭐️ if this project helped you!
## 📝 License
Copyright © 2020 [Forward Miami](https://forward.miami).
This project is [Apache--2.0](https://github.com/forwardmiami/render/blob/master/LICENSE) licensed.