Html2Canvas不在iOS中渲染Font Awesome图标

问题描述 投票:3回答:1

我正在使用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">&#xe022;

      <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

jspdf html2canvas
1个回答
0
投票

这个拉动请求为我修复了:niklasvh/html2canvas#1649。我手动修改了我的缩小的JS文件。

© www.soinside.com 2019 - 2024. All rights reserved.