【JS】img标签使用base64图片以及如何将图片转为base64格式

将base64转为图片

HTML的img标签可以很容易地将Base64字符串显示为图片。只需要为img的src属性设置为Base64字符串即可。

<img src="'data:image/png;base64,'+base64数据" />

也可以通过js控制img添加base64

<input type="file" id="fileInput">
<img id="image" alt="">

<script>
  const fileInput = document.getElementById("fileInput");
  const image = document.getElementById("image");
  fileInput.addEventListener("change", (event) => {
    const file = event.target.files[0];
    const reader = new FileReader();
    reader.addEventListener("load", () => {
      const base64String = reader.result;
      image.src = base64String;
    });
    reader.readAsDataURL(file);
  });
</script>

将图片转为base64

在JS中,可以使用FileReader API来将文件转换成Base64字符串。通过调用FileReader对象的readAsDataURL方法可以将文件读取成一个data URL,我们可以通过这个data URL来获取Base64字符串。

以下是将图片转换成Base64字符串的完整代码:

<input type="file" id="fileInput">

<script>
  const fileInput = document.getElementById("fileInput");
  fileInput.addEventListener("change", (event) => {
    const file = event.target.files[0];
    const reader = new FileReader();
    reader.addEventListener("load", () => {
      const base64String = reader.result;
      console.log(base64String);
    });
    reader.readAsDataURL(file);
  });
</script>

首先获取file对象,然后创建一个FileReader对象。监听FileReader对象的load事件,在load事件被触发时,我们就可以通过reader.result获取到Base64字符串。最后调用readAsDataURL方法将文件读取成data URL。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

田本初

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值