@jsreport/jsreport-phantom-image
v4.1.0
Published
jsreport recipe which is rendering images from html using phantomjs
Downloads
17
Readme
jsreport-phantom-image
jsreport recipe which is rendering images from html using phantomjs
Installation
npm install jsreport-phantom-image
Usage
To use recipe
in for template rendering set template.recipe=phantom-image
in the rendering request.
{
template: { content: '...', recipe: 'phantom-image', engine: '...', phantomImage: { ... } }
}
jsreport-core
You can apply this extension also manually to jsreport-core
var jsreport = require('jsreport-core')()
jsreport.use(require('jsreport-phantom-image')({ strategy: 'phantom-server' }))
Configurations
- imageType - png, gif or jpeg, default png
- quality - quality (1-100) of output image, default 100
- printDelay - number of ms to wait before printing starts
- blockJavaScript - block running js on the page
- waitForJS - see phantom-html-to-pdf - the window variable to set in this case is
JSREPORT_READY_TO_START
Changelogs
4.0.0
- minimum node.js version is now
18.15.0
- update studio build against new webpack and babel
3.3.0
- update phantom-html-to-pdf with phantomjs ssl issues workaround