You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
252 B
Perl
15 lines
252 B
Perl
15 years ago
|
#!/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;
|