带有图标的 html2canvas 问题

html2canvas issue with icons

您好,我正在尝试借助 html2canvas 打印 div 带有一些图标的笔记列表。

见上图是我的输入图像。

但我得到了这个输出。有的话请帮帮我

    .icon-circle:before {
      content: "\e941";
    }
<div style="position: relative; border-bottom: 1px solid #cecece; display: table-cell; vertical-align: middle; width: 85px; padding:5px 0;"> 
  <i class="icon-circle" style="color:"blue">
     <span style="color: white;font-size: 18px;position: absolute; top: 22px;left: 13px;"> T
     </span>
   </i>
</div>

有什么办法

终于在 html2canvas 的新版本 1.1 中得到了解决方案 #1001

这里是fiddle

window.takeScreenShot = function() {
    html2canvas(document.getElementById("target"), {
        width:320,
        height:220
    }).then(function (canvas) {
       document.body.appendChild(canvas);
   });
}