作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在开发 ionic 3 应用程序,我想用相机捕捉多 (3) 张图像,在相机图标下方显示图像的预览,并上传图像和剩余信息。
我无法显示拍摄图像的预览。
let options: CaptureImageOptions = { limit: 3 };
this.mediaCapture.captureImage(options)
.then(data: MediaFile[]) => {
this.images = data;
},
(err: CaptureError) => console.error(err)
);
HTML 代码 -
<div *ngFor="let image of images">
<img src="{{image.fullPath}}" />
</div>
当我将图像的完整路径绑定(bind)到 img src 时,当我打印它给出以下图像路径的完整路径时,它什么也不显示。
file:///storage/emulated/0/Pictures/1534070545509.jpg
请让我摆脱这个问题。
最佳答案
请试试这个:1. TS文件中的st:
async captureImage(useAlbum: boolean) {
const options: CameraOptions = {
quality: 100,
destinationType: this.camera.DestinationType.DATA_URL,
encodingType: this.camera.EncodingType.JPEG,
mediaType: this.camera.MediaType.PICTURE,
...useAlbum ? {sourceType: this.camera.PictureSourceType.SAVEDPHOTOALBUM} : {}
}
const imageData = await this.camera.getPicture(options);
this.base64Image = `data:image/jpeg;base64,${imageData}`;
}
img src="{{base64Image}}"alt=""class="image_container
关于angular - 如何在Ionic 3 中显示捕获的图像预览?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51809725/
我是一名优秀的程序员,十分优秀!