1
0
Fork 0
This repository has been archived on 2019-12-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
arduinisten/projekte/lc-display/pbm2fnord.pl

15 lines
252 B
Perl
Raw Normal View History

2010-03-30 18:55:18 +02:00
#!/usr/bin/perl
use strict;
my @lines = <>;
# P1
# # CREATOR: GIMP PNM Filter Version 1.1
# 5 8
# 1000101010101011111101110100011000101010
$lines[0] eq "P1\n" or die "First line should read 'P1' for Plain PBM";
for (my $line=0; $line <= $#lines;