我正在使用离子2开发一个应用程序。在应用程序中我使用相机捕获图像并在fabric.js canvas上显示捕获的图像作为背景。下面是代码
fabric.Image.fromURL(this.picture, (function (image) {
this.canvas.setBackgroundImage(image, this.canvas.renderAll.bind(this.canvas), {
width: this.canvas.width,
height: this.canvas.height,
originX: 'left',
originY: 'top'
});
}).bind(this));
当我尝试在fabric.js画布上加载该图像作为背景时捕获图像后,我收到“不允许加载本地资源”错误。
相机拍摄后保存的图像路径file:///var/mobile/Containers/Data/Application/488CA482-F853-410C-8EC1-B9F8EFCBDC5C/Library/NoCloud/1510540780019_image.png
有人可以帮忙弄清楚如何将相机拍摄的图像作为背景添加到布料js画布中。