import base64 # 打开图片文件 with open('image.jpg', 'rb') as image_file: # 将图片文件内容转为base64格式 encoded = base64.b64encode(image_file.read()).decode() # decode()方法将二进制数据转换为字符串 # 添加前缀 prefix = 'data:image/jpeg;base64,' # 根据图片类型修改前缀 full_encoded...
简介:图片转base64 并根据格式加前缀 package com.example.democrud.democurd.uuid;import org.apache.commons.lang3.StringUtils;import sun.misc.BASE64Encoder;import java.io.FileInputStream;import java.io.IOException;import java.io.InputStream;public class base {public static void main(String[] args) {...