]>
Commit | Line | Data |
---|---|---|
80ed523f VZ |
1 | #!/bin/sh |
2 | # | |
3 | # Basic sanity check for tiffcp + tiffsplit | |
4 | # | |
5 | # First we use tiffcp to join our test files into a multi-frame TIFF | |
6 | # and then we use tiffsplit to split them out again. | |
7 | # | |
8 | . ${srcdir:-.}/common.sh | |
9 | conjoined=o-tiffcp-split-conjoined.tif | |
10 | splitfile=o-tiffcp-split-split- | |
11 | ||
12 | f_test_convert "${TIFFCP}" "${IMG_UNCOMPRESSED}" "${conjoined}" | |
13 | f_test_convert "${TIFFSPLIT}" "${conjoined}" "${splitfile}" |