How can I strip the data:image part from a base64 string of any image type in Javascript(如何从Javascript中任何图像类型的base64字符串中剥离数据:图像部分)
问题描述
我目前正在执行以下操作以在 Javascript 中解码 base64 图像:
I am currently doing the following to decode base64 images in Javascript:
var strImage = "";
strImage = strToReplace.replace("data:image/jpeg;base64,", "");
strImage = strToReplace.replace("data:image/png;base64,", "");
strImage = strToReplace.replace("data:image/gif;base64,", "");
strImage = strToReplace.replace("data:image/bmp;base64,", "");
正如您在上面看到的,我们接受四种最标准的图像类型(jpeg、png、gif、bmp);
As you can see above we are accepting the four most standard image types (jpeg, png, gif, bmp);
但是,其中一些图像非常大,用替换扫描每张图像 4-5 次似乎是一种可怕的浪费,而且效率极低.
However, some of these images are very large and scanning through each one 4-5 times with replace seems a dreadful waste and terribly inefficient.
有没有一种方法可以可靠地一次性剥离 base64 图像字符串的 data:image 部分?
Is there a way I could reliably strip the data:image part of a base64 image string in a single pass?
也许通过检测字符串中的第一个逗号?
Perhaps by detecting the first comma in the string?
提前致谢.
推荐答案
可以使用正则表达式:
var strImage = strToReplace.replace(/^data:image/[a-z]+;base64,/, "");
<小时>
^
表示在字符串的开头data:image
表示 data:image/
表示 /[a-z]+
表示a和z之间的一个或多个字符;base64,
表示 ;base64,^
means At the start of the stringdata:image
means data:image/
means /[a-z]+
means One or more characters between a and z;base64,
means ;base64,
这篇关于如何从Javascript中任何图像类型的base64字符串中剥离数据:图像部分的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从Javascript中任何图像类型的base64字符串中剥离数据:图像部分
基础教程推荐
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01