我正在使用html2canvas和jspdf来生成pdf。 Everthing在桌面和Android中运行良好,但字体Awsome图标不在iOS中呈现。我已经创建了一个小提琴,小提琴在桌面和Android中工作,但同样的小提琴在iOS中打破。请帮忙。
小提琴链接:https://jsfiddle.net/j09qd4xm/36/
HTML :
<div id="target">
<div style="position:relative;" class="noteclasscontainer" >
<span style="font-size: 60px;" class="glyphicon">
<span style="color:white;font-size: 21px; position: absolute; top: 16px;left:10px;">dd</span>
</span>
</div>
</div>
<button onclick="takeScreenShot()">to image</button>
JS:
window.takeScreenShot = function() {
html2canvas(document.getElementById("target"), {
width:320,
height:220
}).then(function (canvas) {
document.body.appendChild(canvas);
});
}
CSS :
button{
display:block;
height:20px;
margin-top:10px;
margin-bottom:10px;
}
.icon-diamond:before {
content: "\e943";
}
版本:
Html2Canvas:1.0.0-alpha.12
jspdf:1.4.1
这个拉动请求为我修复了:niklasvh/html2canvas#1649。我手动修改了我的缩小的JS文件。