我正在使用html2canvas
div 的图像,内容来自同一页面,同一域,但它显示阿拉伯字母断开连接,似乎 html2canvas 不支持阿拉伯语。
当我在其网页上阅读有关它的可用详细信息时,我没有找到任何有用的信息。
这是我使用的简单代码:
$("#import").click(function(){
// send the contents of the email :)
html2canvas(document.body, {
onrendered: function(canvas) {
document.body.appendChild(canvas);
},
letterRendering:true
});
});
任何线索?