about summary refs log tree commit diff
path: root/test/pbm-ppm-roundtrip.test
blob: 9a3ff79f3853d5da872ff38cac4124260b3b11b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#! /bin/sh
# This script tests: pgmtoppm ppmtopgm ppmtoppm pgmtopbm
# Also requires: pbmmake ppmcolormask pnminvert

echo "Test 1.  Should print 281226646 481 five times."

cat maze.pbm | cksum
pgmtoppm black-white maze.pbm | ppmtopgm | \
  pgmtopbm -th -val=0.5 | cksum
pgmtoppm white-black maze.pbm | ppmtopgm | \
  pgmtopbm -th -val=0.5 | pnminvert | cksum
pgmtoppm white-black maze.pbm | ppmcolormask white | cksum
ppmtoppm < maze.pbm | ppmtopgm | pgmtopbm -th -val=0.5 | cksum

echo "Test 2.  Should print three all-white, then three all-black PBM images"

pbmmake -w 7 3  -plain
echo

pbmmake -w 7 3 | pgmtoppm black-white | ppmtopgm | \
  pgmtopbm -th -val=0.5 -plain
echo
pbmmake -w 7 3 | ppmtoppm | ppmtopgm | \
  pgmtopbm -th -val=0.5 -plain
echo

pbmmake -b 17 2 -plain
echo

pbmmake -b 17 2 | pgmtoppm black-white | ppmtopgm | \
  pgmtopbm -th -val=0.5 -plain
echo
pbmmake -b 17 2 | ppmtoppm | ppmtopgm | \
  pgmtopbm -th -val=0.5 -plain