富贵资源网 Design By www.hznty.com
1.首先我们要把想保存的图片绘制在画布上
<view class='container'> <canvas style='width:{{canvasWidth}}px; height:{{canvasHeight}}px' class="canvas" id="canvas" canvas-id="canvas" disable-scroll="true"> </canvas> <button bindtap='clickMe'>保存图片</button> </view>
2.我们在看看看js代码在用wx.canvasToTempFilePath方法会返回一个tempFilePath图片路径
// canvas 全局配置 var context = null; var rpx var posterHeight = 0 var posterWidth = 0 var avatarPadding = 0 //距离边界 var avatarRadiu = 0 //头像半径 var textScale = 0 //文字比例 //注册页面 Page({ data: { img: "../../images/img1.jpg", myCanvasWidth: 0, myCanvasHeight: 0, posterHeight: 0, }, onLoad: function (options) { var that = this var myCanvasWidth = that.data.myCanvasWidth //为了让图片满铺页面 var myCanvasHeight = that.data.canvasHeight context = wx.createCanvasContext('canvas'); wx.getSystemInfo({ success: function (res) { myCanvasWidth = res.screenWidth myCanvasHeight = res.screenHeight posterWidth = Math.round(res.screenWidth * 0.68) //计算让画布图片自适应 posterHeight = Math.round(posterWidth * 1920 / 1080) avatarPadding = Math.round(posterWidth * 20 / 375) avatarRadiu = Math.round(posterWidth * 25 / 375) textScale = Math.round(posterWidth / 375) rpx = res.windowWidth / 375; that.setData({ myCanvasWidth: myCanvasWidth, myCanvasHeight: myCanvasHeight, posterHeight: posterHeight }) context.drawImage(that.data.img, 0, 0, that.data.myCanvasWidth, that.data.myCanvasHeight); //画布绘制图片 context.draw(); }, }) }, clickMe: function () { //保存图片 wx.canvasToTempFilePath({ canvasId: 'canvas', fileType: 'jpg', success: function (res) { console.log(res) wx.saveImageToPhotosAlbum({ filePath: res.tempFilePath, success(res) { console.log(res) wx.hideLoading(); wx.showToast({ title: '保存成功', }); // //存入服务器 // wx.uploadFile({ // url: 'a.php', //接口地址 // filePath: res.tempFilePath, // name: 'file', // formData: { //HTTP 请求中其他额外的 form data // 'user': 'test' // }, // success: function (res) { // console.log(res); // }, // fail: function (res) { // console.log(res); // }, // complete: function (res) { // } // }); }, fail() { wx.hideLoading() } }) } }) }, })
3,css样式 直接给画布设置高度宽度就可以 图片会铺满屏幕
总结
以上所述是小编给大家介绍的微信小程序点击保存图片到本机功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!
富贵资源网 Design By www.hznty.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
富贵资源网 Design By www.hznty.com
暂无评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。