当前位置: 首页 > 工具软件 > b64img > 使用案例 >

将图片转换成base64 在前端使用<img>标签显示出来

海岳
2023-12-01

Java 端代码 根据图片绝对路径获取图片的base64编码

 public static String getImageStrFromPath(String imgPath) {  
        InputStream in = null;  
        byte[] data = null;  
        // 读取图片字节数组  
        try {  
            in = new FileInputStream(imgPath);  
            data = new byte[in.available()];  
            in.read(data);  
            in.close();  
        } catch (IOException e) {  
            e.printStackTrace();  
        }  
        // 对字节数组Base64编码  
        BASE64Encoder encoder = new BASE64Encoder();  
        // 返回Base64编码过的字节数组字符串  
        return encoder.encode(data);  

    }  

将返回的字符串放入HTML的<img> 标签中

  <img src="https://img-blog.csdnimg.cn/2022010617234674481.jpg" class="images" border="5px"/>

 类似资料: