gpt4 book ai didi

JFreeChart & Image

转载 作者:行者123 更新时间:2023-12-04 16:15:43 27 4
gpt4 key购买 nike

是否可以将图像/BufferedImage 转换为 JFreeChart?

最佳答案

将图像转换到 JFree 是不可能的。要从 JFreechart 创建图像,您可以执行以下操作:

BufferedImage objBufferedImage=objJFreechart.createBufferedImage(600,800);
ByteArrayOutputStream bas = new ByteArrayOutputStream();
try {
ImageIO.write(objBufferedImage, "png", bas);
} catch (IOException e) {
e.printStackTrace();
}

byte[] byteArray=bas.toByteArray();

这将创建 byte[] 。

现在您需要从 byte[] 创建图像。下面是这样做的。
InputStream in = new ByteArrayInputStream(obj);
BufferedImage image = ImageIO.read(in);
File outputfile = new File("image.png");
ImageIO.write(image, "png", outputfile);

图像是在创建项目的地方(本地驱动器)创建的。

关于JFreeChart & Image,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5272966/

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