码迷,mamicode.com
首页 > Web开发 > 详细

HTML5 Canvas 为网页添加文字水印

时间:2019-09-29 12:48:48      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:width   png   style   contex   image   context   文字   fill   http   

<!DOCTYPE html>
<html>
<body>

<canvas id="myCanvas" width="3000" height="1500" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.
</canvas>

<script>
var can = document.createElement(canvas);
var body = document.body;
body.appendChild(can);
can.width=400;
can.height=200;
can.style.display=none;
var cans = can.getContext(2d);
//ctx.translate(-60, 0);//移动坐标原点
cans.rotate(-20*Math.PI/180);
cans.font = "16px Microsoft JhengHei";
cans.fillText("阿斯顿发送到!",can.width/3,can.height/2);
body.style.backgroundImage="url("+can.toDataURL("image/png")+")";

</script>

</body>
</html>

 技术图片

HTML5 Canvas 为网页添加文字水印

标签:width   png   style   contex   image   context   文字   fill   http   

原文地址:https://www.cnblogs.com/yinrq/p/11607086.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!