I have been attempting to convert a div to an image using the html2canvas library from this link. Unfortunately, I have not had success in converting the full div to an image as the dropper is missing in the final result.
URL: Visit this URL for reference
I have tried using the following code:
html2canvas($("#widget")).then(function(canvas) {
bimg = canvas.toDataURL(); // by default png
});
Therefore, I am seeking any suggestions on how to solve this issue. I have experimented with html2canvas and found it effective in converting text and CSS divs to canvas successfully.