uniapp 之 图片保存在相册

uniapp图片保存到相册用的uni.downloadFile下载资源和uni.saveImageToPhotosAlbum保存到相册来做的

<template>
	<view class="con">
		<view class="safeAreaBottom"></view>
		<view class="cont">
			<view class="text-center text-30">
				您的邀请码
			</view>
			<view class="fs-30" style="color: #FF1A1A;text-align: center;margin: 20rpx 0;">
				<text v-for="(item,index) in userInfo.invitationCode" :key="index"
					style="padding: 8rpx 14rpx;margin-right: 9rpx;background: #EFEFEF;">{{item}}</text>
			</view>
			<view style="font-size: 24rpx;color: #999;" class="text-center">邀请的好友也可在注册时直接填写邀请码</view>
			<view style="text-align: center;margin: 20rpx 0;">
				<image :src="qrPic" style="width: 316rpx;height: 316rpx;">
				</image>
			</view>
			<view>
				<view style="position: fixed;top: 78%;left: 92rpx;width: 562rpx;">
					<u-button text="立即邀请" openType="share" shape="circle" color="#FC7400"></u-button>
					<view style="margin-top: 30rpx;" class="btn" @tap="downloadImg">
						保存图片
					</view>
				</view>
			</view>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				userInfo: {},
				qrPic: "",
			}
		},
		onLoad() {
			this.init();
		},
		onShareAppMessage(res) {
			let path = "/pages/login/register?Code="+uni.getStorageSync("userInfo").Code;
			return {
				path: path,
				title: '标题',
				success(res) {
					uni.showToast({
						title: '分享成功'
					})
				},
				fail(res) {
					uni.showToast({
						title: '分享失败',
						icon: 'none'
					})
				}
			}
		},
		methods: {
			init() {
				this.$http({
					url: '/api/userDetail',
					method: 'get',
				}).then(res => {
					this.userInfo = res.data;
					uni.setStorageSync("userInfo", res.data);
				});
				this.$http({
					url: '/api/invitationQrcode',
					method: 'get',
				}).then(res => {
					this.qrPic = res.data.qrPic;
				});
			},
			// 保存到本地
			save() {
				uni.saveImageToPhotosAlbum({
					filePath: this.qrPic,
					success: () => {
						uni.$u.toast('保存成功');
					},
					fail: () => {
						uni.$u.toast('保存失败');
					},
				});
			},
			downloadImg() {
				uni.showLoading({
					title: '加载中...'
				});
				//wx.downloadFile方法:下载文件资源到本地
				uni.downloadFile({
					url: this.qrPic, //图片地址
					success: function(res) {
						console.log(111, res);
						//wx.saveImageToPhotosAlbum方法:保存图片到系统相册
						uni.saveImageToPhotosAlbum({
							filePath: res.tempFilePath, //图片文件路径
							success: function(data) {
								uni.hideLoading(); //隐藏 loading 提示框
								uni.showModal({
									title: '提示',
									content: '保存成功',
									modalType: false,
								})
							},
							// 接口调用失败的回调函数
							fail: function(err) {
								if (err.errMsg === "saveImageToPhotosAlbum:fail:auth denied" || err
									.errMsg === "saveImageToPhotosAlbum:fail auth deny" || err
									.errMsg === "saveImageToPhotosAlbum:fail authorize no response"
								) {
									uni.showModal({
										title: '提示',
										content: '需要您授权保存相册',
										modalType: false,
										success: modalSuccess => {
											uni.openSetting({
												success(settingdata) {
													console.log("settingdata",
														settingdata)
													if (settingdata
														.authSetting[
															'scope.writePhotosAlbum'
														]) {
														uni.showModal({
															title: '提示',
															content: '获取权限成功,再次点击图片即可保存',
															modalType: false,
														})
													} else {
														uni.showModal({
															title: '提示',
															content: '获取权限失败,将无法保存到相册哦~',
															modalType: false,
														})
													}
												},
												fail(failData) {
													console.log("failData",
														failData)
												},
												complete(finishData) {
													console.log("finishData",
														finishData)
												}
											})
										}
									})
								}
							},
							complete(res) {
								uni.hideLoading(); //隐藏 loading 提示框
							}
						})
					}
				})
			},
			saveEwm() {
				//获取相册授权
				uni.getSetting({
					success: (res) => {
						if (!res.authSetting['scope.writePhotosAlbum']) {
							uni.authorize({
								scope: 'scope.writePhotosAlbum',
								success: () => {
									//这里是用户同意授权后的回调
									this.save();
								},
								fail: () => { //这里是用户拒绝授权后的回调
								}
							})
						} else { //用户已经授权过了
							this.save();
						}
					}

				})

			},
		},
	}
</script>

<style scoped>
	.con {
		min-height: 100vh;
		background: url('https://mtyfl.oss-cn-shanghai.aliyuncs.com/share_fried.png') center center no-repeat;
		background-size: 100% 100%;
	}

	.cont {
		position: absolute;
		width: 636rpx;
		height: 684rpx;
		left: 57rpx;
		top: 34%;
	}

	.btn {
		width: 562rpx;
		height: 70rpx;
		border-radius: 200rpx;
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid #FFFFFF;
		color: #fff;
		font-size: 28rpx;
	}
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

jiojio冲冲冲

能帮助你是我最大的动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值