blob: 982b72a9cc9ce3feab84f95ff4c189f5d89f44bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/bash
# This script tests: pnmtorle rletopnm
# Also requires: pamchannel pamtopnm
#Test 1. Should produce 1571496937 33838, cksum of testimg.red
pamchannel -infile=testimg.ppm -tupletype="GRAYSCALE" 0 | pamtopnm | \
pnmtorle | rletopnm | cksum
#Test 2. Should print 1926073387 101484, cksum of testimg.ppm
pnmtorle testimg.ppm | \
rletopnm | cksum
|