…is a simple command-line program (written in Java) designed to convert image files to NFP (the "standard" ComputerCraft image format). Despite it's name, it should be capable of converting from any image format natively supported by Java - even… JPEG… *shudder*.
Downloads
v0.1b2: Dropbox
v0.1b1: Dropbox
Installation
Seeing as this is a command-line program, I'm going to assume you know how to unzip files and stuff.
Usage (v0.1b2 and up)
For detailed usage instructions, run
java -jar PNGNFP.jar --help
For reference, to perform a pixel-for-pixel conversion, run
java -jar PNGNFP.jar nf Tux.nfp Tux.png
If you don't want a ridiculously large image, run
java -jar PNGNFP.jar snf 12 18 Tux.nfp Tux.png
If you want to test drive the new CIE94 colour matching algorithm (still in "beta"), run
java -jar PNGNFP.jar sdnf 12 18 Tux.nfp Tux.png
All of the above commands will convert Tux.png to Tux.nfp.Changelog
Spoiler
v0.1b2- Removed unnecessary "c" option.
- Added Delta E (CIE94) colour matching algorithm.
- Removed Tux.png from zip distribution.
- Initial release