将base64转换为图像是给出位图数据

Posted

技术标签:

【中文标题】将base64转换为图像是给出位图数据【英文标题】:Converting base64 to image is giving bitmap data 【发布时间】:2021-07-12 06:10:07 【问题描述】:

我正在尝试将 base64 转换为图像并将图像数据传递给 jquery。在数据表中显示时它不显示图像。因为 jQuery 的图像是不会去的

 public Image Base64StringToImage(string base64String)
    
        byte[] imageBytes = Convert.FromBase64String(base64String);
        MemoryStream ms = new MemoryStream(imageBytes, 0, imageBytes.Length);

        ms.Write(imageBytes, 0, imageBytes.Length);
        var image = System.Drawing.Image.FromStream(ms);
        return image;
    

这是我的 base 64 到图像的转换。以下是我的 jquery。

   'data': 'EmpPhoto',
  "render": function (Data, type, row, meta) 
  var imgsrc = 'data:image/png;base64,' + Data;
  return '<img src="/media/' + imgsrc + '"  >';
    
 ,   

但是图像没有显示在屏幕上,因为我正在从 base64 获取位图到图像转换。请帮帮我。

【问题讨论】:

请显示您的问题的minimal reproducible example。没有办法知道现在出了什么问题 【参考方案1】:

您可以使用下面的 html sn-p 从图像的 base64 字符串呈现图像。

<!-- jpeg encoded base64 image string -->
<img src"data:image/jpeg;base64,jpeg_image_base64_encoded_string"/>

<!-- png encoded base64 image string -->
<img src"data:image/png;base64,png_image_base64_encoded_string"/>

【讨论】:

以上是关于将base64转换为图像是给出位图数据的主要内容,如果未能解决你的问题,请参考以下文章

java 将位图转换为Base64

Python 将关系对数据转换为图数据 / 邻接矩阵

Python 将关系对数据转换为图数据 / 邻接矩阵

Python 将关系对数据转换为图数据 / 邻接矩阵

Android 位图到 Base64 字符串

Android将base64编码的字符串转换为图像视图