如何在Java中快速初始化BufferedImage?

发布于 2024-10-16 12:35:36 字数 550 浏览 2 评论 0原文

我有以下 Java 代码:

public static BufferedImage createImage(byte[] data, int width, int height)
{
  BufferedImage res = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_GRAY);

  byte[] rdata = ((DataBufferByte)res.getRaster().getDataBuffer()).getData();

  for (int y = 0; y < height; y++) {
    int yi = y * width;
    for (int x = 0; x < width; x++) {
      rdata[yi] = data[yi];
      yi++;
    }
  }

  return res;
}

有更快的方法吗?

在 C++ 中我会使用 memcpy,但是在 Java 中呢?

或者也许可以直接用传递的数据初始化结果图像?

I have the following Java code:

public static BufferedImage createImage(byte[] data, int width, int height)
{
  BufferedImage res = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_GRAY);

  byte[] rdata = ((DataBufferByte)res.getRaster().getDataBuffer()).getData();

  for (int y = 0; y < height; y++) {
    int yi = y * width;
    for (int x = 0; x < width; x++) {
      rdata[yi] = data[yi];
      yi++;
    }
  }

  return res;
}

Is there a faster way to do this?

In C++ I would use memcpy, but in Java?

Or maybe it is possible to initialize the result image with the passed data directly?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌无敌 2024-10-23 12:35:36

好吧,要快速复制数组,您可以使用 System.arraycopy:

System.arraycopy(data, 0, rdata, 0, height * width);

恐怕我不知道如何初始化 BufferedImage。

你尝试过吗:

res.getRaster().setDataElements(0, 0, width, height, data);

Well, to copy the array quickly you can use System.arraycopy:

System.arraycopy(data, 0, rdata, 0, height * width);

I don't know about initializing the BufferedImage to start with though, I'm afraid.

Have you tried:

res.getRaster().setDataElements(0, 0, width, height, data);

?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文