On Thursday, 7 November 2013 at 08:21:51 UTC, Marco Leise wrote:
So maybe someone knows a typical application (maybe a notepad
replacement, conversion tool, calculator, image viewer, ...)?

You can do a simple image viewer in just one line with my simpledisplay.d and png.d:

import simpledisplay;
import arsd.png;
void main(string[] args)
      displayImage(Image.fromMemoryImage(readPng(args[1])));
}

Reply via email to