2

如何访问索引图像(png8 或 gif)的图像数据(调色板索引数组)?

例子:

  • 图像调色板:{0xFF0000, 0x00FF00, 0x0000FF}
  • 图像数据:{0,1,1,0,1,2,2,2,0,1,0,2,0,1,1,0}

我需要的是:

ArrayList<Integer> getImageData(File image) {
  /* ??? */
}
4

1 回答 1

0

下面的代码会将图像数据读入imageData一个值数组int

  BufferedImage image = ImageIO.read(imageFile);
  int width = image.getWidth();
  int height = image.getHeight();
  int[] imageData = new int[width * height * image.getColorModel().getNumComponents()];
  imageData = image.getData().getPixels(0, 0, width, height, imageData);
于 2012-09-01T11:22:36.797 回答