2011-08-04 20:58:36 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
# img2lcd.pl - by <sec@42.org> 05/2011, BSD Licence
|
|
|
|
#
|
|
|
|
# This script converts an image to .lcd format for the r0ket
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
use Getopt::Long;
|
|
|
|
use Module::Load;
|
|
|
|
|
|
|
|
$|=1;
|
|
|
|
|
|
|
|
###
|
|
|
|
### Runtime Options
|
|
|
|
###
|
|
|
|
|
|
|
|
my ($verbose);
|
|
|
|
|
|
|
|
GetOptions (
|
|
|
|
"verbose" => \$verbose, # flag
|
|
|
|
"help" => sub {
|
|
|
|
print <<HELP;
|
|
|
|
Uasge: img2lcd.pl [-v]
|
|
|
|
|
|
|
|
Options:
|
|
|
|
--verbose Be verbose.
|
|
|
|
HELP
|
|
|
|
exit(-1);}
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
###
|
|
|
|
### Code starts here.
|
|
|
|
###
|
|
|
|
|
|
|
|
my $in=shift || "i42.gif";
|
|
|
|
|
|
|
|
my $out=$in;
|
|
|
|
$out=~s/\..*/.lcd/;
|
|
|
|
|
|
|
|
load GD;
|
|
|
|
my $image = GD::Image->new($in);
|
|
|
|
|
|
|
|
|
|
|
|
my $w=$image->width;
|
|
|
|
my $h=$image->height;
|
|
|
|
|
2011-08-04 21:39:16 +00:00
|
|
|
if($verbose){
|
|
|
|
print STDERR "$in: ${w}x$h\n\n";
|
|
|
|
};
|
|
|
|
|
2011-08-04 20:58:36 +00:00
|
|
|
my @img;
|
2011-08-04 21:39:16 +00:00
|
|
|
for my $y (0..$h-1){
|
|
|
|
for my $x (0..$w-1){
|
2011-08-04 20:58:36 +00:00
|
|
|
my $px= $image->getPixel($x,$y);
|
2011-08-04 21:45:52 +00:00
|
|
|
$img[$x][($y+4)/8]|=$px<<(7-($y+4)%8);
|
2011-08-04 20:58:36 +00:00
|
|
|
if($verbose){
|
|
|
|
$px=~y/01/ */; print STDERR $px;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
if ($verbose){
|
|
|
|
print STDERR "<\n";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
open(F,">",$out)||die "open: $!";
|
|
|
|
|
2011-08-04 21:39:16 +00:00
|
|
|
$|=1;
|
|
|
|
my $hb=int(($h-1)/8);
|
2011-08-04 20:58:36 +00:00
|
|
|
for my $y (0..$hb){
|
2011-08-04 21:39:16 +00:00
|
|
|
for my $x (0..$w-1){
|
|
|
|
printf F "%c",$img[$w-$x-1][$hb-$y];
|
2011-08-04 20:58:36 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
close(F);
|