blob: 17f1a6c4abc36a234d6af0251bdeeeacaca53e0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#! /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
|