js实现html页面转图片、并保存到本地

本文介绍如何利用js将HTML页面转换成canvas,再转化为image,最终保存到本地。涉及到的关键技术包括html2canvas库和canvas2image库。在pc端和移动端需要注意不同的保存策略,移动端可以通过长按保存图片,而pc端则需要通过特定的代码来触发保存。同时,文章提到了在本地测试时可能出现的跨域问题,建议在线上环境测试以避免该问题。
摘要由CSDN通过智能技术生成

js实现html页面转图片,并保存图片在本地,实现原理为(html转canvas、canvas转image)

需要的库:canvas2image.js 下载地址:https://github.com/SuperAL/canvas2image;
需要的库:html2canvas.js 下载地址:http://html2canvas.hertzen.com/dist/html2canvas.min.js
效果如下:
在这里插入图片描述

首先是html页面:

<head>
    <meta charset="utf-8">
     <meta name="viewport" content="width=320,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <meta name="apple-mobile-web-app-status-bar-style" content="black">
    <title>实现HTML转图片</title>
    <style type="text/css" media="screen">
        .bg{
    
                width: 100%;
                min-height: 100%;
                height: 100vh;
                background-color: #a799ac;
                text-align: center;
        }
        .text{
    
            width: 50%;
            margin-top: 20%;
            height: 25px;
            border: 1px solid #b7c092;
            border-radius: 10px;
            outline: none;
        }
        .save, .picture{
    
            border-radius: 10px;
            border: none;
            width: 60px;
            padding: 0;
            height: 25px;
            background: #9cd8b1;
            outline: none;
        }
        
评论 8
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值