From dc82a851014290f99dfef34298c3c8f96580ca96 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Wed, 8 Oct 2014 17:29:32 -0400 Subject: docs --- bin/pnm2chr | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/bin/pnm2chr b/bin/pnm2chr index 4f0dc33..a0754ab 100644 --- a/bin/pnm2chr +++ b/bin/pnm2chr @@ -1,9 +1,26 @@ #!/usr/bin/env perl use strict; use warnings; +# PODNAME: pnm2chr +# ABSTRACT: converts PNM files to NES sprite data (.chr files) use Games::NES::SpriteMaker 'image_to_sprite'; +=head1 SYNOPSIS + + pnm2chr input.pgm # generates input.chr + pnm2chr < input.pgm > output.chr + +=head1 DESCRIPTION + +This is a simple wrapper around L to convert existing +files from PNM format to CHR-ROM format. If you pass a filename as an argument, +it will create a new file in the same directory with the same name except +replacing the extension with C<.chr>, otherwise it will read PNM data from +stdin and write CHR data to stdout. + +=cut + my $data; if (@ARGV) { $data = $ARGV[0]; -- cgit v1.2.3-54-g00ecf