i want to export the disposition to an image, but give me blank image.
var div = document.querySelector('#wrapper');
html2canvas(div, {
onrendered: function (canvas) {
var screanshot = canvas.toDataURL("image/png");
}
});
thanks.
I advise you to ask the question under the html2canvas tag on StackOverflow. This is not really an issue with grapesjs. Also check wether your document.querySelector returns null. I think you are not using the iframe document.
@alibouaziz the #wrapper is inside the GrapesJS's iframe, so querySelector returns nothing.
You can access the content of the iframe via Canvas module, so to get the body you would do editor.Canvas.getBody()
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
I advise you to ask the question under the html2canvas tag on StackOverflow. This is not really an issue with grapesjs. Also check wether your document.querySelector returns null. I think you are not using the iframe document.