Capturing Webpage Screenshot with Html2Canvas.js(使用Html2Canvas生成网页快照)

转载自:http://www.ayobamiadewole.com/Blog/Capturing-Webpage-Screenshot-with-Html2Canvas

Introduction

Recently, I was to implement a web application requirement that stipulates that the screenshot of a web page containing form filled by users be captured, as the form is being submitted. While this may seems trivial, a lot of intricacies is involved in building an image representation of the page as it is shown on the browser. 

Html2canvas.js

Html2canvas.js is a javascript library that provides functionality for capturing a screenshot, the screenshot is built based on the information available on the page. The script traverses the DOM and builds a representation of the page alongside the images and the css styles present on the page, but it doesn’t render flash, java applets and iframe. The html2canvas library can be downloaded  here 

The example in this blog post uses Asp.net MVC and it contains code to capture the screenshot and display the captured image on the browser and upload the image to the controller action method for saving as a png file on the server. 

Add reference to the required javascript libraries at the header of the page 

<script src="~/Js/jquery-1.9.1.js"></script>
<script src="~/Js/html2canvas.js"></script>
<script src="~/Js/jquery.plugin.html2canvas.js"></script>
  

Below is the Razor and Html tags for the page 

@using(Html.BeginForm("ScreenShot", "Home", FormMethod.Post, new { @id = "form" }))
{
<div class="designPane">
    <br />
    <br />
    <p>
        Some text that would be captured as screenshot
    </p>
</div>
<div class="space">
</div>
@Html.Hidden("capturedShot")
<div>
    <input type="button" id="btnCapture" value="Capture"  />
    <input type="button" id="btnDisplay" value="View Image"  />
</div>


}
  

The javascript code for capturing the screenshot and displaying the captured image and that for uploading to the server. 

<script>
    $(document).ready(function () {

        $('#btnCapture').on("click", function () {
            captureAndUpload();
        });

        $('#btnDisplay').on("click", function () {
            captureAndDisplay();
        });

    function captureAndUpload() {
        $('body').html2canvas({
            onrendered: function (canvas) {
                //Set hidden field's value to image data (base-64 string)
                $('#capturedShot').val(canvas.toDataURL("image/png"));
                document.getElementById("form").submit();
            }
        });
    }

    function captureAndDisplay() {
        $('body').html2canvas({
            onrendered: function (canvas) {
                var myImage = canvas.toDataURL("image/png");
                window.open(myImage);
            }
        });
    }
    });
</script>
  

The controller action method below accepts the uploaded screenshot and writes it to a file. 

        [HttpPost]
        public ActionResult ScreenShot(FormCollection formCollection)
        {
            string screenShot = formCollection["capturedShot"];
            //remove the image header details
            string trimmedData = screenShot.Replace("data:image/png;base64,","");

            //convert the base 64 string image to byte array
            byte[] uploadedImage=Convert.FromBase64String(trimmedData);
            
            //the byte array can be saved into database or on file system

            //saving the image on the server
            string fileName=Guid.NewGuid()+".png";
            string path=Server.MapPath("~/App_Data/"+fileName);
            System.IO.File.WriteAllBytes(path,uploadedImage);
            return View();
        }
  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值