plus.gallery
7 人关注该话题
plus.gallery.pick上传图片后图片尺寸跟大小都被压缩 plus.gallery
1***@163.com 2022-09-07 11:56 发起问题 • 1 人关注 • 0 个回复 • 203 次浏览
plus.gallery.pick调用系统相册选择图片返回的图片地址不是该图片原本的地址而是mui自己缓存的地址 plus.gallery
p***@yeah.net 2021-12-03 11:18 发起问题 • 1 人关注 • 0 个回复 • 333 次浏览
使用h5+的保存相册方法,图片没有保存到相册目录下 plus plus.gallery 相册 h5+ mui
5***@qq.com 2021-10-29 15:39 回复问题 • 4 人关注 • 3 个回复 • 3928 次浏览
小米手机plus.gallery.save()报错,code12 plus.gallery 5+App开发 相册
9***@qq.com 2021-03-16 13:34 发起问题 • 1 人关注 • 0 个回复 • 474 次浏览
离线打包后plus.gallery.pick安卓手机相册无法显示缩略图、ios顶部文字颜色变白 plus.gallery 相册
6***@qq.com 2020-12-16 15:29 回复问题 • 6 人关注 • 13 个回复 • 2327 次浏览
plus.gallery.save保存失败 nvue plus.gallery 相册
雨人 2020-07-09 11:09 发起问题 • 1 人关注 • 0 个回复 • 1004 次浏览
【报Bug】安卓10在sdk29无法获取正确相册路径 相册 plus.gallery Gallery
Huiqi 2020-04-29 18:36 回复问题 • 3 人关注 • 1 个回复 • 1645 次浏览
【报Bug】plus.gallery.pick的filter设置video或none无效 plus.gallery Gallery
虫子的辛苦 2019-07-03 22:31 回复问题 • 5 人关注 • 4 个回复 • 1672 次浏览
【已经解决】h5+ 调用iOS相册 崩溃 plus.gallery
新用户协议 2019-02-01 14:53 回复问题 • 2 人关注 • 1 个回复 • 2116 次浏览
英文IOS手机 打开相册plus.gallery.pick显示中文按钮 plus.gallery mui
8***@qq.com 2019-01-23 16:40 发起问题 • 1 人关注 • 0 个回复 • 1213 次浏览
plus.gallery访问相册不必跟用户声明权限吗? plus.gallery HBuilder
rym3025 2018-11-01 10:42 发起问题 • 1 人关注 • 0 个回复 • 877 次浏览
plus.gallery.pick选择存储卡上图片文件夹 plus.gallery
1***@qq.com 2018-09-27 18:58 回复问题 • 1 人关注 • 1 个回复 • 1227 次浏览
赞同来自: Trust
```javascript
// stringImg为图片路径序列
function downloadFile(stringImg) {
var arrImg = stringImg.split(","... 显示全部 »
```javascript
// stringImg为图片路径序列
function downloadFile(stringImg) {
var arrImg = stringImg.split(",");
var index = 0;
var total = arrImg.length;
var down = function() {
var imgUrl = arrImg[index];
console.log(imgUrl)
var downLoader = plus.downloader.createDownload(imgUrl, {}, function(download, status) {
if(status == 200) {
plus.gallery.save(download.filename, function() {
console.log("success:" + imgUrl);
index += 1;
if(index !== total) {
down();
}
}, function(e) {
console.log("error:" + imgUrl + JSON.stringify(e));
});
}
});
downLoader.start();
};
down();
}
```
问题解决,非常感谢!!
使用plus.gallery.pick打开本地相册 plus.gallery
2***@qq.com2019-08-14 09:48 评论文章 • 1 个评论 • 4504 次浏览