0

在 Haxe 编程语言中,是否有任何跨语言的方式将像素数据数组保存到文件中(例如,以 BMP 或 PNG 格式)?

class SavePixelsToFile {
  static function main(){
    //how can I save this array of pixel data to a file? It is a simple 2D array of RGB arrays, with the red, green, and blue components in the respective order.
    var arr = [
      [[0, 0, 0],[255, 255, 255]],
      [[255, 255, 255],[0, 0, 0]]
      ];
  }
}
4

2 回答 2

2

格式库会做你想做的事。http://code.google.com/p/hxformat/

安装这个库:haxelib install format

使用以下方法将其链接到您的 hxml 文件中:-lib 格式

要将图像数据写入文件,请执行以下操作:

function writePixels24(file:String, pixels:haxe.io.Bytes, width:Int, height:Int) {
    var handle = sys.io.File.write(file, true);
    new format.png.Writer(handle)
        .write(format.png.Tools.build24(width, height, pixels));
    handle.close();
}

var bo = new haxe.io.BytesOutput();
for (pixel in pixels)
    for (channel in pixel) 
         bo.writeByte(channel);
var bytes = bo.getBytes();
writePixels24("Somefile.png", bytes);

这适用于具有 sys.* 包(非闪存)的目标。您仍然可以在没有 sys.* 包的情况下生成 png,但需要另一种保存文件的方法。

于 2012-12-26T05:31:48.413 回答
0

一种易于编写的格式是PPM。netpbm 工具可以轻松地操作它们,也可以转换为多种格式,包括PBMPNG

于 2012-12-25T23:25:59.123 回答