1
0
Fork 0

initial commit

This commit is contained in:
Eve Entropia 2010-03-30 18:55:18 +02:00
commit 617bdc2d29
281 changed files with 5698 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,4 @@
P1
# CREATOR: GIMP PNM Filter Version 1.1
5 8
1000101010101011111101110100011000101010

Binary file not shown.

View file

@ -0,0 +1,14 @@
#!/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;

Binary file not shown.

Binary file not shown.