admin管理员组文章数量:1345176
I have a requirement where I am cropping the image using ng2-image cropper. But the output is of base64, I want to convert it to image source as I have to send it to some server. I have searched but didn't found anything patible with angular 4 .
I have a requirement where I am cropping the image using ng2-image cropper. But the output is of base64, I want to convert it to image source as I have to send it to some server. I have searched but didn't found anything patible with angular 4 .
Share edited Nov 28, 2017 at 11:45 Ayushi Tomar asked Nov 28, 2017 at 11:24 Ayushi TomarAyushi Tomar 2451 gold badge3 silver badges17 bronze badges 6- Where exactly does Angular get in the way here? If you have your decoded Base64 (using whatever library) you can send it off to the server, no? – Thilo Commented Nov 28, 2017 at 11:26
- their is a requirement that i need to send it in image format only on the server – Ayushi Tomar Commented Nov 28, 2017 at 11:40
- To de- or encode a base64 you can use the corresponding function from javascript. – Oliver Commented Nov 28, 2017 at 12:54
- it is not working, getting error in that too – Ayushi Tomar Commented Nov 29, 2017 at 5:17
- 1 Can't understand negative votes here. Are you so in need of "deep troll" or "exclusive hater" badge from SO? – Josep Alacid Commented Jan 24, 2018 at 19:16
2 Answers
Reset to default 8it can be done by using conversion to Blob
dataURItoBlob(dataURI) {
var binary = atob(dataURI.split(',')[1]);
var array = [];
for (var i = 0; i < binary.length; i++) {
array.push(binary.charCodeAt(i));
}
return new Blob([new Uint8Array(array)], {
type: 'image/jpg'
});
}
enter code here
var myFile:Blob=this.dataURItoBlob(myDataUri);
Please try this another simple way to convert base64 to blob
fetch(base64)
.then(res => {
return res.blob();
})
.then(blob => {
console.log(blob);
});
本文标签: javascriptConvert base64 string to image in angular 4Stack Overflow
版权声明:本文标题:javascript - Convert base64 string to image in angular 4 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743690028a2522554.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论