change transparent color into white in html2canvas
I am using javascript library html2canvas to save the table of my project. It works fine but when I save the image it shows transparent background color for PNG and background color black for jpeg. Here is what I did: <script> window.onload = function(){ html2canvas(document.getElementById("tablePng"),{ onrendered: function(canvas){ var img = canvas.toDataURL('image/jpeg'); $('#saveTable').attr('href',img); } }); }; </script> Doing these above will save the images but the background colour will be black and when changing var img = canvas.toDataURL('image/png'); the background will be