6

我正在使用 html2canvas 来获取网页的屏幕截图并将其呈现为缩略图(嗯,400x300,不完全是缩略图)。

基于屏幕截图控制台代码,除缩略图部分外,一切都很好。

如何将图像尺寸设置为 400x300?在萤火虫中,我将属性定位为:<canvas style="width: 973px; height: 2184px;" width="973" height="2184"></canvas>. 但是,我无法在我的代码(如下)或 html2canvas.js 中找出硬编码 400x300 参数的位置。

截图.html:

<html>
<head> 
<title>Screenshot</title> 
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js">
</script>
<![endif]--> 
</head> 
<body> 
<div class=container> </div> 
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> 

<script type="text/javascript" src="js/html2canvas.js"></script> 
<script type="text/javascript">
var date=new Date();
var message,timeoutTimer,timer;
var proxyUrl="http://html2canvas.appspot.com";
function addRow(a,c,d){var b=$("<tr />").appendTo($(a));b.append($("<td />").css("font-weight","bold").text(c)).append($("<td />").text(d))}function throwMessage(b,a){window.clearTimeout(timeoutTimer);timeoutTimer=window.setTimeout(function(){message.fadeOut(function(){message.remove()})},a||2000);$(message).remove();message=$("<div />").html(b).css({margin:0,padding:10,background:"#000",opacity:0.7,position:"fixed",top:10,right:10,fontFamily:"Tahoma",color:"#fff",fontSize:12,borderRadius:12,width:"auto",height:"auto",textAlign:"center",textDecoration:"none"}).hide().fadeIn().appendTo("body")}$(function(){$("#recommended a").click(function(c){c.preventDefault();$("#url").val(this.href);$("button").click()});var a,b;$('input[type="button"]').click(function(){$(a.contentWindow).unbind("load");$(a).contents().find("body").html2canvas({canvasHeight:b.body.scrollHeight,canvasWidth:b.body.scrollWidth,logging:true})});$("#getscreenshot").click(function(d){d.preventDefault();$(this).prop("disabled",true);var c=$("#url").val();$("#content").append($("<img />").attr("src","loading.gif").css("margin-top",40));var f=document.createElement("a");f.href=c;$.ajax({data:{xhr2:false,url:f.href},url:proxyUrl,dataType:"jsonp",success:function(e){a=document.createElement("iframe");$(a).css({visibility:"hidden"}).width($(window).width()/2).height($(window).height()/2);$("#content").append(a);b=a.contentWindow.document;b.open();$(a.contentWindow).load(function(){var g=$(a).contents().find("body"),h={onrendered:function(j){$("#content").empty().append(j);$("#getscreenshot").prop("disabled",false);$("base").attr("href","")},allowTaint:true,taintTest:false,flashcanvas:"src/flashcanvas.min.js"},i=html2canvas(g,h)});$("base").attr("href",f.protocol+"//"+f.hostname+"/"+f.pathname);e=e.replace("<head>","<head><base href='"+f.protocol+"//"+f.hostname+"/"+f.pathname+"'  />");if($("#disablejs").prop("checked")){e=e.replace(/\<script/gi,"<!--<script");e=e.replace(/\<\/script\>/gi,"<\/script>-->")}b.write(e);b.close()}})})});
</script> 

<form class="well form-search"> 
<label for=url>Website URL:</label> 
<input type=url id=url value="http://www.yahoo.com" class="input-medium search-query"/>
<button class=btn id=getscreenshot>Get screenshot!</button> 
</form> 

 <div id=content></div> 

</body> 
</html>
4

6 回答 6

21

基于 Mikkos 的提示,以下内容为我唤醒了

window.html2canvas([$('body')[0]], {
              onrendered: function(canvas) {
                var extra_canvas = document.createElement("canvas");
                extra_canvas.setAttribute('width',70);
                extra_canvas.setAttribute('height',70);
                var ctx = extra_canvas.getContext('2d');
                ctx.drawImage(canvas,0,0,canvas.width, canvas.height,0,0,70,70);
                var dataURL = extra_canvas.toDataURL();
                var img = $(document.createElement('img'));
                img.attr('src', dataURL);
                // insert the thumbnail at the top of the page
                $('body').prepend(img);
              },
            });
于 2013-04-30T16:27:38.377 回答
3

您可以使用缩略图尺寸创建额外的 new<canvas>并使用 drawImage() 在这个 new 上按比例缩小它<canvas>

drawImage() 可以读取<canvas>image源,您可以设置目标宽度和高度。

https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/Canvas_tutorial/Using_images

于 2012-07-09T18:26:04.183 回答
2

这对我很有用...

    html2canvas(document.getElementById("divTextOrig"), { allowTaint: true, 
    scrollX:0, scrollY: -window.scrollY}).then(function(canvas)
    {
        document.getElementById("divText1").appendChild(canvas);
        $('canvas').css("width",txtWidth);
        $('canvas').css("height",txtHeight);                    
    });
于 2020-09-16T17:58:43.903 回答
1

我对您的问题使用了类似的方法,部分基于其他答案:) 由于如果图像是实际图像,调整图像大小会更容易,这是我的代码:

var img = new Image();
img.src = canvas.toDataURL("image/png");
img.width = 500;
document.getElementsByClassName('modal-body')[0].appendChild(img);

canvas是 html2canvas 函数的输出;img然后我使用 img 数据(画布的 base64 编码)创建一个设置源。其余的是标准的好旧javascript:设置img宽度,附加到div元素......

于 2015-11-12T10:49:41.283 回答
0

好吧,您可以通过使用该方法从画布上下文中获取引用getContext('2d'),然后通过将返回的上下文分配给一个变量(例如。ctx),您可以使用上下文scale方法将画布上下文缩放到所需的大小。另外,您可以使用样式属性定义画布大小,并通过将实际图像大小除以所需的缩略图大小来设置样式width和属性的大小。height在最后一步中,您将结果数字放入ctx.scale(width, height);方法中。

于 2012-07-09T18:45:47.980 回答
0

对我来说不明确地发现了这种方式(后来我发现它为什么这样做)。只需在位置属性之后添加一些属性,例如 this doc.addImage(img, 'JPEG', 20, 20, 200, 250),最后两个数字让您有机会调整 img 的大小。

于 2017-11-08T11:17:59.467 回答