i\'m facing some problem converting html to image using java im using html2image[java]
it create an image, but the problem is it only create an image on a small part
HtmlImageGenerator by default creates and sets a java.awt.Dimension object of (800,800). You can pass your own new Dimension(x, y) of your custom size using below setter of HtmlImageGenerator class:
public void setSize(Dimension dimension);
I hope it helps.