modulepackage
0.0.0-20200714103301-b5b8a39097a2
Repository: https://github.com/jujusharp/html2image.git
Documentation: pkg.go.dev
# README
html2image
a golang wrapper to reander html, markdown to image
Usage
directly render image
- render png
http://127.0.0.1:10000/v1/html2img/to/img.png?url=http://www.google.com
- render jpg
http://127.0.0.1:10000/v1/html2img/to/img.jpg?url=http://www.google.com
- render png (markdown only)
- render jpg (markdown only)
Notice:
This program will analyze markdown (when url
end with .md
). If you don't want to render a markdown file, please add the nomd=true
parameter to the url.
render image and return image url info
- render image and return json
http://127.0.0.1:10000/v1/html2img/to/img.json?url=http://www.google.com&format=jpg
- show image url from the json result
http://127.0.0.1:10000/v1/html2img/show/img/{your image url}
More Params In Url
html: the html content to render, if url has set, this param will ignore
md: the markdown content to render, if url has set,
this param will ignore (not support yet)
nomd: ingore markdown url
width: the html page width
height: the html page height
quality: the image quality
Changelog
2020/04/23 Add markdown render support.
# Functions
GenerateImage creates an image from an input.
# Structs
ImageOptions represent the options to generate the image.
No description provided by the author