a golang wrapper to reander html, markdown to 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 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}
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
2020/04/23 Add markdown render support.