dpict99695329 2015-07-09 15:55 采纳率: 100%
浏览 2284
已采纳

html2canvas:删除图片上方的空白区域

这让我很着急。 我只是想html2canvas捕获图像 我有这个:

<div id="post" class="xx">Déposer</div>
<canvas width="500" height="200"></canvas>

<script type="text/javascript" src="html2canvas.js"></script>
<script type="text/javascript">
   var canvas = document.querySelector("canvas");
   html2canvas($("#post"), {canvas: canvas}).then(function(canvas) {
        var img = canvas.toDataURL()
        window.open(img); 
   });
</script>

结果是这样的图像:

width and height not corresponding to the size of image

该按钮出现在画布的底部,我想仅保留该按钮,有关如何仅获取该按钮的任何想法吗?

如果更改画布的大小,则结果如下所示:

enter image description here

这是按钮的代码:

<div id="post">
    <div style="float:left;background:url(g.png);width:21px;height:53px;"></div>
   <div id="c" style="float:left;background:url(c.png) repeat-x;height:53px;font-family:arial;text-shadow: -1px -1px rgba(0, 0, 0, 0.3);padding: 12px 20px;font-size: 20px;line-height: 24px;color: rgb(255, 255, 255);text-align: center;vertical-align: middle;text-decoration: none;">Déposer</div>
     <div style="float:left;background:url(d.png);width:21px;height:53px;"></div>
</div>

和文件 : c.pngd.pngg.png

这使得该按钮(页面中没有多余的CSS): enter image description here

  • 写回答

1条回答

  • dongzhou8764 2015-07-09 16:25
    关注

    The following code:

    <html>
        <head>
            <style>
                canvas {
                    border: solid red 1px;
                }
            </style>
        </head>
    <div id="post">
        <div style="float:left;background:url(g.png);width:21px;height:53px;"></div>
       <div id="c" style="float:left;background:url(c.png) repeat-x;height:53px;font-family:arial;text-shadow: -1px -1px rgba(0, 0, 0, 0.3);padding: 12px 20px;font-size: 20px;line-height: 24px;color: rgb(255, 255, 255);text-align: center;vertical-align: middle;text-decoration: none;">Déposer</div>
         <div style="float:left;background:url(d.png);width:21px;height:53px;"></div>
    </div>
        <canvas width="500" height="200"></canvas>
    
        <script type="text/javascript" src="jquery.js"></script>
        <script type="text/javascript" src="html2canvas.js"></script>
        <script type="text/javascript">
           var canvas = document.querySelector("canvas");
           html2canvas($("#post"), {canvas: canvas});
    
    //.then is an invalid function for html2canvas
    /*.then(function(canvas) {
                var img = canvas.toDataURL()
                window.open(img);
           });
    */
        </script>
    </html>
    

    Gives me the following results:

    enter image description here

    From that I would conclude

    • html2canvas has a small amount of padding around where it adds the image to canvas
    • You may have css on your button that may be causing the canvas to push it down farther than you would like
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧