From 08efa61c7d0cc218308298dfe2e75bb0f0ce79fb Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 6 Jan 2019 17:03:27 -0500 Subject: [PATCH] new writePng function for using existing array with more flexible format --- png.d | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/png.d b/png.d index e92e040..83ff420 100644 --- a/png.d +++ b/png.d @@ -22,6 +22,29 @@ void writePng(string filename, MemoryImage mi) { std.file.write(filename, writePng(png)); } +/// +enum PngType { + greyscale = 0, /// The data must be `depth` bits per pixel + truecolor = 2, /// The data will be RGB triples, so `depth * 3` bits per pixel + indexed = 3, /// The data must be `depth` bits per pixel, with a palette attached. Use [writePng] with [IndexedImage] for this mode + greyscale_with_alpha = 4, /// The data must be (grey, alpha) byte pairs for each pixel. Thus `depth * 2` bits per pixel + truecolor_with_alpha = 6 /// The data must be RGBA quads for each pixel. Thus, `depth * 4` bits per pixel. +} + +/// Saves an image from an existing array. Note that depth other than 8 may not be implemented yet. +void writePng(string filename, const ubyte[] data, int width, int height, PngType type, ubyte depth = 8) { + PngHeader h; + h.width = width; + h.height = height; + + auto png = blankPNG(h); + addImageDatastreamToPng(data, png); + + import std.file; + std.file.write(filename, writePng(png)); +} + + /* //Here's a simple test program that shows how to write a quick image viewer with simpledisplay: