如何从javafx image / imageview类获取byte []?我想将我的图像作为Blob存储到我的数据库中。这是我用它的方法
public PreparedStatement prepareQuery(HSQLDBConnector connector) {
try {
Blob logoBlob = connector.connection.createBlob();
logoBlob.setBytes(0,logo.getImage());//stuck here
for (int i = 0, a = 1; i < data.length; i++, a++) {
connector.prepStatCreateProfile.setString(a, data[i]);
}
//store LOB
connector.prepStatCreateProfile.setBlob(11, logoBlob);
} catch (SQLException ex) {
ex.printStackTrace();
}
return connector.prepStatCreateProfile;
}
有没有办法将我当前的对象(imageview),图像转换为byte [] ?,或者shoud我开始考虑使用其他类作为我的图像/或者指向带参考的位置和使用路径/网址?
答案 0 :(得分:15)
试试这个:
BufferedImage bImage = SwingFXUtils.fromFXImage(logo.getImage(), null);
ByteArrayOutputStream s = new ByteArrayOutputStream();
ImageIO.write(bImage, "png", s);
byte[] res = s.toByteArray();
s.close(); //especially if you are using a different output stream.
应该根据徽标类
工作你需要在写和读时指定一种格式,并且据我记得bmp不受支持,所以你最终会在数据库上找到一个png字节数组
答案 1 :(得分:8)
纯java fx解决方案跟踪(==你必须填写遗漏点:)
Image i = logo.getImage();
PixelReader pr = i.getPixelReader();
PixelFormat f = pr.getPixelFormat();
WriteablePixelFromat wf = f.getIntArgbInstance(); //???
int[] buffer = new int[size as desumed from the format f, should be i.width*i.height*4];
pr.getPixels(int 0, int 0, int i.width, i.height, wf, buffer, 0, 0);
答案 2 :(得分:3)
Lorenzo的回答是正确的,这个答案只是考察了效率和可移植性方面。
根据图像类型和存储要求,将图像转换为压缩格式进行存储可能会很有效,例如:
ByteArrayOutputStream byteOutput = new ByteArrayOutputStream();
ImageIO.write(SwingFXUtils.fromFXImage(fxImage, null), "png", byteOutput);
Blob logoBlob = connector.connection.createBlob();
logoBlob.setBytes(0, byteOutput.toByteArray());
在保留映像之前转换为常用格式(如png)的另一个优点是,处理数据库的其他程序将能够读取映像而无需尝试从JavaFX特定的字节数组存储格式转换它。