KatexWidget: Make the background transparent

Related to #125
This commit is contained in:
Vishesh Handa
2020-05-19 18:55:34 +02:00
parent ce201aa390
commit fb48fc648d

View File

@ -72,7 +72,7 @@ class _KatexWidgetState extends State<KatexWidget> {
throwOnError: false
});
html2canvas(document.body).then(function(canvas) {
html2canvas(document.body, {backgroundColor: 'rgba(0, 0, 0, 0)', removeContainer: true,}).then(function(canvas) {
var img = canvas.toDataURL("image/png");
Print.postMessage(img);
});