我正在使用ng2-img-cropper裁剪照片(不是头像)。 https://github.com/cstefanache/angular2-img-cropper
我按照这个例子: https://embed.plnkr.co/V91mKCNkBQZB5QO2MUP4/
我看到它似乎不支持url图像,只支持本地图像。反正有没有使用url图像?
如果没有,是否有任何可以使用url图像的替代方案?
感谢您的任何建议。
答案 0 :(得分:0)
请查看以下主题中的讨论:https://github.com/cstefanache/angular2-img-cropper/issues/110
这个想法是使用类似的东西: var image:HTMLImageElement = new Image(); this.image.crossOrigin =' Anonymous&#39 ;; image.src =' https://www.google.ro/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png&#39 ;; image.addEventListener(' load',(data)=> { this.cropper.setImage(图像); });