I'm trying to convert HTML to picture using html2canvas. The problem is that arabic characters didn't convert correctly !
</html>
<body dir="rtl">
<a class="STO_one" href="#">
<span><b> بسم الله الرحمن الرحيم </b> </span>
</a>
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="js/html2canvas.js"></script>
<script>
html2canvas(document.body, {
onrendered: function(canvas) {
document.body.appendChild(canvas);
}
});
</script>
</body>
</html>