我有writableRaster对象。我想将其另存为png图像。
我了解到的Raster是,它是像素的矩形区域。

是否可以将其另存为png图像?如果是,怎么办?

最佳答案

您可以使用JAI将映像保存到磁盘,请参见示例:
JAI支持tiff,jpeg,png ...

SampleModel sampleModel =
  RasterFactory.createBandedSampleModel(DataBuffer.TYPE_FLOAT,  width,height,1);
  // Create a compatible ColorModel.
  ColorModel colorModel = PlanarImage.createColorModel(sampleModel);

 Raster raster = RasterFactory.createWritableRaster(sampleModel,dbuffer, new Point(0,0));
  // Create a TiledImage using the float SampleModel.
  TiledImage tiledImage = new TiledImage(0,0,width,height,0,0,
  sampleModel,colorModel);
  // Set the data of the tiled image to be the raster.
  tiledImage.setData(raster);
  // Save the image on a file.
  JAI.create("filestore",tiledImage,"floatpattern.tif","TIFF");

09-10 12:58