在相机插件ionic2 cordova中限制文件大小?

时间:2018-06-01 04:04:44

标签: cordova ionic2 camera

在我的代码中,我试图从图库上传文件。为此,我使用了相机插件,并试图只允许少于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);
});

0 个答案:

没有答案