gpt4 book ai didi

angular - 如何从 IONIC 3 中的图库中获取或选择图像

转载 作者:太空狗 更新时间:2023-10-29 17:11:16 24 4
gpt4 key购买 nike

如何从 IONIC 3 中的图库中获取图像?

我无法使用

从图库中获取图像

https://ionicframework.com/docs/native/camera/

https://ionicframework.com/docs/native/camera-preview/

最佳答案

您可以使用 Native camera plugin 来做到这一点.

.ts

 //take Photo
takePhoto(sourceType:number) {
const options: CameraOptions = {
quality: 50,
destinationType: this.camera.DestinationType.DATA_URL,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE,
correctOrientation: true,
sourceType:sourceType,
}

this.camera.getPicture(options).then((imageData) => {
let base64Image = 'data:image/jpeg;base64,' + imageData;
}, (err) => {
// Handle error
});
}

注意:您只需要像这样调用上面的方法:

this.takePhoto(0);//照片库

this.takePhoto(1);//相机

0 for photo library 1 for Camera

用户界面

enter image description here

关于angular - 如何从 IONIC 3 中的图库中获取或选择图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47118760/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com