0

无论如何,在 csv 和 xml 中是否有 50x50 的缩略图?我正在使用grails。

4

1 回答 1

1

您可以将图像转换为 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);
于 2013-01-06T11:31:43.767 回答