about summary refs log tree commit diff
path: root/test/pnmremap1.test
blob: d7c5189c5f9266005aa6c65da2c159d3b5e6928d (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
#! /bin/bash
# This script tests: pnmremap
# Also requires: pamseq pamtopnm


tmpdir=${tmpdir:-/tmp}
palette=${tmpdir}/palette
#palette255=${tmpdir}/palette255

pamseq 3 5 -tupletype=RGB | pamtopnm > ${palette}
#pamdepth 255 ${palette} > ${palette255}

# Test 1. Floyd-Steinberg
# This fails with older versions of Netpbm and x86-64.
# May also fail on other non-Intel architectures.
# v. 10.59.2
# x86-32: 2667816854 101482
# x86-64: 3602410851 101482

pnmremap -mapfile=${palette} -floyd -norandom \
 testimg.ppm | cksum

#pnmremap -mapfile=${palette255} -floyd -norandom \
# testimg.ppm | cksum

rm ${palette} # ${palette255}