html3png
v1.0.7
Published
html3png is a tool for converting html to png
Downloads
5
Readme
html3png
html3png is a CLI for converting HTML to PNG. If you set --id flag, you can clip your HTML and convert it to PNG.
Installation
You can install via npm.
$ npm install -g html3png
Flags
html3png [args]
Options:
-f, --file Input file [string][required]
-o, --output Output file [string][default: "out.png"]
-i, --id Clip img [string]
-h, --help Show help [boolean]
-v, --version Show version number [boolean]
Examples:
html3png -f example.html -o out.png
Usage
Convert HTML to PNG
# convert target html file to png.
# you can set output file name.
$ html3png -f example.html -o example.png
Convert clippted HTML to PNG
# if you use id flag, you can convert html inside a element with id you give to png.
$ html3png -f example.html -i image