niklasvh / html2canvas

Screenshots with JavaScript
https://html2canvas.hertzen.com/
MIT License
30.6k stars 4.81k forks source link

Hebrew words space removed #1662

Open Eldar4Levi opened 6 years ago

Eldar4Levi commented 6 years ago

Hebrew words spacing removed in the image

Bug reports: http://jsfiddle.net/upxdL9te/

Specifications: html2canvas version tested with: latest Browser & version: chrome 69.0.3497.100

svidlak commented 6 years ago

@Eldar4Levi Found a workaround for it, had the exact same issue: document.getElementById('to_export_as_pdf').style.letterSpacing = '0.1px'; put this line of code to your container before executing html2canvas,that's my workaround for that.

Shon92 commented 5 years ago

@Eldar4Levi Found a workaround for it, had the exact same issue: document.getElementById('to_export_as_pdf').style.letterSpacing = '0.1px'; put this line of code to your container before executing html2canvas,that's my workaround for that.

Worked for me.