render HTML as image

You could try wkhtmltoimage https://wkhtmltopdf.org
Latest version released on June 2018, so it is still maintained.

There is also https://phantomjscloud.com if you want to rely on an online service.

[quote=407611:@Jeremie Leroy]You could try wkhtmltoimage https://wkhtmltopdf.org
Latest version released on June 2018, so it is still maintained.

There is also https://phantomjscloud.com if you want to rely on an online service.[/quote]

i used wkthmltopdf for all my reporting in my applications.

what can i use wkhtmltoimage for???

Another vote for WKhtmltopdf.

WLhtmltoimage is the same but with PNG/JPG/GIF as output.

[quote=407641:@Eduardo Gutierrez de Oliveira]Another vote for WKhtmltopdf.

WLhtmltoimage is the same but with PNG/JPG/GIF as output.[/quote]

And does it support transparency?

[quote=407641:@Eduardo Gutierrez de Oliveira]Another vote for WKhtmltopdf.

WLhtmltoimage is the same but with PNG/JPG/GIF as output.[/quote]

is all the parameter the same as wkhtmltopdf??? will have to try it…

Yes, but only if backgrounds are not styled. For example. their homepage has a background for the header but not for the body: wkhtmltopdf

So the PNG shows the header blue and the rest transparent.

wkhtmltoimage --transparent “https://wkhtmltopdf.org/downloads.html” wkhtmltox.png

Sounds logical.

I think this is just what I need. Thanks!
I see it is a command I run through shell. I like that. This way I can do multi-core processing.