gpt4 book ai didi

xml - Grails在csv和xml中嵌入图像

转载 作者:行者123 更新时间:2023-12-02 15:34:18 28 4
gpt4 key购买 nike

反正在csv和xml中有缩略图50x50?我在用grails。

最佳答案

您可以将图像转换为Base64并嵌入字节数据。有时这是在CSS和其他媒介(如数据库)中完成的。这是一个简单的例子...

将图像编码为CSV文件...

def csvFile = new File('my_csv.csv');  
def imageFile = new File('./images/thumbnail.png');
String imageData = imageFile.bytes.encodeBase64().toString();

csvFile.append("${image.name}, ${imageData}"); //<-- write image name and data

解码图像也很容易...
byte[] imageBytes = imageData.decodeBase64();
imageFile = new File('./images/decoded/thumbnail.png');
imageFile.setBytes(imageBytes);

关于xml - Grails在csv和xml中嵌入图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14181561/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com