微信小程序保存图片的方法

Posted 郁冬

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序保存图片的方法相关的知识,希望对你有一定的参考价值。

1、xhtml代码

长按保存:

<view class="img"  catchlongpress=‘baocun‘></view>

 

2、Js代码

baocun: function (e) {
        wx.showModal({
            title: ‘提示‘,
            content: ‘确定要保存这张图片吗?‘,
            success: function (res) {
                if (res.confirm) {
                    console.log(‘用户点击确定‘)
                    wx.getImageInfo({
                        src: ‘xxxxxxx‘,
                        success: function (res) {
                            console.log(res);
                            var path = res.path;
                            wx.saveImageToPhotosAlbum({
                                filePath: path,
                                success: function (res) {
                                    console.log(‘图片已保存‘);
                                },
                                fail: function (res) {
                                    console.log(‘保存失败‘);
                                }
                            })
                        }
                    });
                } else if (res.cancel) {
                    console.log(‘用户点击取消‘)
                }
            }
        })
    },

 

详情可参考小程序文档

以上是关于微信小程序保存图片的方法的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序 怎么实现view内容保存到本地图片

微信小程序将图片保存到本地的方法

微信小程序实现将图片保存到手机相册

微信小程序里怎么控制两个只能选择一个的?

怎么把微信小程序图片保存下来?

微信简历小程序保存图片