Applications that created on D Programming

Adam D. Ruppe destructionator at gmail.com
Thu Nov 7 08:51:57 PST 2013


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])));
}


More information about the Digitalmars-d mailing list