首页 > 解决方案 > 限制相机插件ionic2 cordova中的文件大小?

问题描述

在我的代码中,我尝试从图库上传文件。为此,我使用了相机插件并试图只允许少于 50MB 的文件。从图库浏览时有什么方法可以限制文件大小。下面是我的代码。

this.camera.getPicture({
  quality: 50,
  destinationType: this.camera.DestinationType.FILE_URI, // <== try THIS
  sourceType: this.camera.PictureSourceType.PHOTOLIBRARY,
  mediaType: this.camera.MediaType.VIDEO,      
}).then((imageData) => {
}, (err) => {
  console.log(err);
});

标签: cordovaionic2camera

解决方案


推荐阅读