libtiff/test/strip_rw.c

398 lines
11 KiB
C
Raw Normal View History

2004-10-01 10:16:37 -04:00
/* $Id: strip_rw.c,v 1.3 2004-10-01 14:16:37 dron Exp $ */
2004-09-14 11:01:16 -04:00
/*
* Copyright (c) 2004, Andrey Kiselev <dron@remotesensing.org>
*
* Permission to use, copy, modify, distribute, and sell this software and
* its documentation for any purpose is hereby granted without fee, provided
* that (i) the above copyright notices and this permission notice appear in
* all copies of the software and related documentation, and (ii) the names of
* Sam Leffler and Silicon Graphics may not be used in any advertising or
* publicity relating to the software without the specific, prior written
* permission of Sam Leffler and Silicon Graphics.
*
* THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
* EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
* WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
*
* IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
* ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
* OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
* WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
* LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
* OF THIS SOFTWARE.
*/
/*
* TIFF Library
*
* Numerical arrays used to test libtiff's read/write functions.
*/
#include "tif_config.h"
#include <stdio.h>
2004-09-15 09:00:02 -04:00
#include <string.h>
2004-09-14 11:01:16 -04:00
#ifdef HAVE_UNISTD_H
# include <unistd.h>
#endif
#include "tiffio.h"
#include "test_arrays.h"
const char *filename = "strip_test.tiff";
int
2004-09-15 09:00:02 -04:00
write_strips(TIFF *tif, const tdata_t array, const tsize_t size)
2004-09-14 11:01:16 -04:00
{
2004-09-15 09:00:02 -04:00
tstrip_t strip, nstrips;
tsize_t stripsize, offset;
2004-09-14 11:01:16 -04:00
stripsize = TIFFStripSize(tif);
if (!stripsize) {
fprintf (stderr, "Wrong size of strip.\n");
return -1;
}
2004-09-15 09:00:02 -04:00
nstrips = TIFFNumberOfStrips(tif);
for (offset = 0, strip = 0;
offset < size && strip < nstrips;
offset+=stripsize, strip++) {
/*
* Properly write last strip.
*/
tsize_t bufsize = size - offset;
if (bufsize > stripsize)
bufsize = stripsize;
2004-09-14 11:01:16 -04:00
if (TIFFWriteEncodedStrip(tif, strip, (char *)array + offset,
2004-09-15 09:00:02 -04:00
bufsize) != bufsize) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't write strip %d.\n", (int)strip);
return -1;
}
}
return 0;
}
int
2004-09-15 09:00:02 -04:00
read_strips(TIFF *tif, const tdata_t array, const tsize_t size)
2004-09-14 11:01:16 -04:00
{
2004-09-15 09:00:02 -04:00
tstrip_t strip, nstrips;
tsize_t stripsize, offset;
tdata_t buf = NULL;
2004-09-14 11:01:16 -04:00
2004-09-15 09:00:02 -04:00
stripsize = TIFFStripSize(tif);
if (!stripsize) {
fprintf (stderr, "Wrong size of strip.\n");
2004-09-14 11:01:16 -04:00
return -1;
}
2004-09-15 09:00:02 -04:00
buf = _TIFFmalloc(stripsize);
if (!buf) {
fprintf (stderr, "Can't allocate space for strip buffer.\n");
return -1;
2004-09-14 11:01:16 -04:00
}
2004-09-15 09:00:02 -04:00
nstrips = TIFFNumberOfStrips(tif);
for (offset = 0, strip = 0;
offset < size && strip < nstrips;
offset+=stripsize, strip++) {
/*
* Properly read last strip.
*/
tsize_t bufsize = size - offset;
if (bufsize > stripsize)
bufsize = stripsize;
if (TIFFReadEncodedStrip(tif, strip, buf, -1) != bufsize) {
fprintf (stderr, "Can't read strip %d.\n", (int)strip);
return -1;
}
if (memcmp(buf, (char *)array + offset, bufsize) != 0) {
fprintf (stderr, "Wrong data read for strip %d.\n",
strip);
_TIFFfree(buf);
2004-09-14 11:01:16 -04:00
return -1;
}
}
2004-09-15 09:00:02 -04:00
_TIFFfree(buf);
2004-09-14 11:01:16 -04:00
return 0;
}
int
2004-09-15 09:00:02 -04:00
create_image_stripped(const char *name, uint32 width, uint32 length,
uint32 rowsperstrip, uint16 compression,
uint16 spp, uint16 bps, uint16 photometric,
uint16 sampleformat, uint16 planarconfig,
const tdata_t array, const tsize_t size)
2004-09-14 11:01:16 -04:00
{
2004-09-15 09:00:02 -04:00
TIFF *tif;
2004-09-14 11:01:16 -04:00
/* Test whether we can write tags. */
2004-09-15 09:00:02 -04:00
tif = TIFFOpen(name, "w");
if (!tif)
goto openfailure;
2004-09-14 11:01:16 -04:00
2004-09-15 09:00:02 -04:00
if (!TIFFSetField(tif, TIFFTAG_IMAGEWIDTH, width)) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't set ImageWidth tag.\n");
goto failure;
}
2004-09-15 09:00:02 -04:00
if (!TIFFSetField(tif, TIFFTAG_IMAGELENGTH, length)) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't set ImageLength tag.\n");
goto failure;
}
if (!TIFFSetField(tif, TIFFTAG_BITSPERSAMPLE, bps)) {
fprintf (stderr, "Can't set BitsPerSample tag.\n");
goto failure;
}
if (!TIFFSetField(tif, TIFFTAG_SAMPLESPERPIXEL, spp)) {
fprintf (stderr, "Can't set SamplesPerPixel tag.\n");
goto failure;
}
2004-09-15 09:00:02 -04:00
if (!TIFFSetField(tif, TIFFTAG_ROWSPERSTRIP, rowsperstrip)) {
fprintf (stderr, "Can't set RowsPerStrip tag.\n");
2004-09-14 11:01:16 -04:00
goto failure;
}
if (!TIFFSetField(tif, TIFFTAG_PLANARCONFIG, planarconfig)) {
fprintf (stderr, "Can't set PlanarConfiguration tag.\n");
goto failure;
}
if (!TIFFSetField(tif, TIFFTAG_PHOTOMETRIC, photometric)) {
fprintf (stderr, "Can't set PhotometricInterpretation tag.\n");
goto failure;
}
2004-09-15 09:00:02 -04:00
if (write_strips(tif, array, size) < 0) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't write image data.\n");
goto failure;
}
TIFFClose(tif);
2004-09-15 09:00:02 -04:00
return 0;
failure:
TIFFClose(tif);
openfailure:
fprintf (stderr, "Can't create test TIFF file %s:\n"
" ImageWidth=%ld, ImageLength=%ld, RowsPerStrip=%ld, Compression=%d,\n"
" BitsPerSample=%d, SamplesPerPixel=%d, SampleFormat=%d,\n"
" PlanarConfiguration=%d, PhotometricInterpretation=%d.\n",
name, width, length, rowsperstrip, compression,
bps, spp, sampleformat, planarconfig,
photometric);
return -1;
}
int
read_image_stripped(const char *name, uint32 width, uint32 length,
uint32 rowsperstrip, uint16 compression,
uint16 spp, uint16 bps, uint16 photometric,
uint16 sampleformat, uint16 planarconfig,
const tdata_t array, const tsize_t size)
{
TIFF *tif;
uint16 value_u16;
uint32 value_u32;
/* Test whether we can read written values. */
tif = TIFFOpen(name, "r");
if (!tif)
goto openfailure;
2004-09-14 11:01:16 -04:00
2004-09-15 09:00:02 -04:00
if (TIFFIsTiled(tif)) {
fprintf (stderr, "Can't read image %s, it is tiled.\n",
name);
goto failure;
}
if (!TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &value_u32)
|| value_u32 != width) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't get tag %d.\n", TIFFTAG_IMAGEWIDTH);
goto failure;
}
2004-09-15 09:00:02 -04:00
if (!TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &value_u32)
|| value_u32 != length) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't get tag %d.\n", TIFFTAG_IMAGELENGTH);
goto failure;
}
2004-09-15 09:00:02 -04:00
if (!TIFFGetField(tif, TIFFTAG_BITSPERSAMPLE, &value_u16)
|| value_u16 != bps) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't get tag %d.\n", TIFFTAG_BITSPERSAMPLE);
goto failure;
}
2004-09-15 09:00:02 -04:00
if (!TIFFGetField(tif, TIFFTAG_PHOTOMETRIC, &value_u16)
|| value_u16 != photometric) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't get tag %d.\n", TIFFTAG_PHOTOMETRIC);
goto failure;
}
2004-09-15 09:00:02 -04:00
if (!TIFFGetField(tif, TIFFTAG_SAMPLESPERPIXEL, &value_u16)
|| value_u16 != spp) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't get tag %d.\n", TIFFTAG_SAMPLESPERPIXEL);
goto failure;
}
2004-09-15 09:00:02 -04:00
if (!TIFFGetField(tif, TIFFTAG_ROWSPERSTRIP, &value_u32)
|| value_u32 != rowsperstrip) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't get tag %d.\n", TIFFTAG_ROWSPERSTRIP);
goto failure;
}
2004-09-15 09:00:02 -04:00
if (!TIFFGetField(tif, TIFFTAG_PLANARCONFIG, &value_u16)
|| value_u16 != planarconfig) {
2004-09-14 11:01:16 -04:00
fprintf (stderr, "Can't get tag %d.\n", TIFFTAG_PLANARCONFIG);
goto failure;
}
2004-09-15 09:00:02 -04:00
if (read_strips(tif, array, size) < 0) {
fprintf (stderr, "Can't read image data.\n");
goto failure;
}
TIFFClose(tif);
return 0;
failure:
2004-09-14 11:01:16 -04:00
TIFFClose(tif);
2004-09-15 09:00:02 -04:00
openfailure:
fprintf (stderr, "Can't read test TIFF file %s:\n"
" ImageWidth=%ld, ImageLength=%ld, RowsPerStrip=%ld, Compression=%d,\n"
" BitsPerSample=%d, SamplesPerPixel=%d, SampleFormat=%d,\n"
" PlanarConfiguration=%d, PhotometricInterpretation=%d.\n",
name, width, length, rowsperstrip, compression,
bps, spp, sampleformat, planarconfig,
photometric);
return -1;
}
int
write_scanlines(TIFF *tif, const tdata_t array, const tsize_t size)
{
uint32 length, row;
tsize_t scanlinesize, offset;
if (!TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &length)) {
fprintf (stderr, "Can't get tag %d.\n", TIFFTAG_IMAGELENGTH);
return -1;
}
scanlinesize = TIFFScanlineSize(tif);
if (!scanlinesize) {
fprintf (stderr, "Wrong size of scanline.\n");
return -1;
}
for (offset = 0, row = 0; row < length; offset+=scanlinesize, row++) {
if (TIFFWriteScanline(tif, (char *)array + offset, row, 0) < 0) {
fprintf (stderr,
"Can't write image data at row %ld.\n", row);
return -1;
}
}
return 0;
}
int
main(int argc, char **argv)
{
uint32 rowsperstrip;
uint16 compression;
uint16 spp, bps, photometric, sampleformat, planarconfig;
/*
* Test two special cases: image consisting from single line and image
* consisting from single column.
*/
rowsperstrip = 1;
compression = COMPRESSION_NONE;
spp = 1;
bps = 8;
photometric = PHOTOMETRIC_MINISBLACK;
sampleformat = SAMPLEFORMAT_UINT;
planarconfig = PLANARCONFIG_CONTIG;
if (create_image_stripped(filename, XSIZE * YSIZE, 1, rowsperstrip,
compression, spp, bps, photometric,
sampleformat, planarconfig,
(const tdata_t) byte_array1, byte_array1_size) < 0) {
fprintf (stderr, "Can't create TIFF file %s.\n", filename);
goto failure;
}
if (read_image_stripped(filename, XSIZE * YSIZE, 1, rowsperstrip,
2004-10-01 10:16:37 -04:00
compression, spp, bps, photometric,
sampleformat, planarconfig,
(const tdata_t) byte_array1, byte_array1_size) < 0) {
2004-09-15 09:00:02 -04:00
fprintf (stderr, "Can't read TIFF file %s.\n", filename);
goto failure;
}
unlink(filename);
if (create_image_stripped(filename, 1, XSIZE * YSIZE, rowsperstrip,
compression, spp, bps, photometric,
sampleformat, planarconfig,
(const tdata_t) byte_array1, byte_array1_size) < 0) {
fprintf (stderr, "Can't create TIFF file %s.\n", filename);
goto failure;
}
if (read_image_stripped(filename, 1, XSIZE * YSIZE, rowsperstrip,
2004-10-01 10:16:37 -04:00
compression, spp, bps, photometric,
sampleformat, planarconfig,
(const tdata_t) byte_array1, byte_array1_size) < 0) {
2004-09-15 09:00:02 -04:00
fprintf (stderr, "Can't read TIFF file %s.\n", filename);
goto failure;
}
unlink(filename);
/*
* Test one-channel image with different parameters.
*/
rowsperstrip = 1;
spp = 1;
bps = 8;
photometric = PHOTOMETRIC_MINISBLACK;
sampleformat = SAMPLEFORMAT_UINT;
planarconfig = PLANARCONFIG_CONTIG;
if (create_image_stripped(filename, XSIZE, YSIZE, rowsperstrip,
compression, spp, bps, photometric,
sampleformat, planarconfig,
(const tdata_t) byte_array1, byte_array1_size) < 0) {
fprintf (stderr, "Can't create TIFF file %s.\n", filename);
goto failure;
}
if (read_image_stripped(filename, XSIZE, YSIZE, rowsperstrip,
2004-10-01 10:16:37 -04:00
compression, spp, bps, photometric,
sampleformat, planarconfig,
(const tdata_t) byte_array1, byte_array1_size) < 0) {
2004-09-15 09:00:02 -04:00
fprintf (stderr, "Can't read TIFF file %s.\n", filename);
goto failure;
}
unlink(filename);
2004-09-14 11:01:16 -04:00
2004-09-15 09:00:02 -04:00
rowsperstrip = YSIZE;
if (create_image_stripped(filename, XSIZE, YSIZE, rowsperstrip,
compression, spp, bps, photometric,
sampleformat, planarconfig,
(const tdata_t) byte_array1, byte_array1_size) < 0) {
fprintf (stderr, "Can't create TIFF file %s.\n", filename);
goto failure;
}
if (read_image_stripped(filename, XSIZE, YSIZE, rowsperstrip,
2004-10-01 10:16:37 -04:00
compression, spp, bps, photometric,
sampleformat, planarconfig,
(const tdata_t) byte_array1, byte_array1_size) < 0) {
2004-09-15 09:00:02 -04:00
fprintf (stderr, "Can't read TIFF file %s.\n", filename);
goto failure;
}
2004-09-14 11:01:16 -04:00
unlink(filename);
2004-09-15 09:00:02 -04:00
2004-09-14 11:01:16 -04:00
return 0;
failure:
unlink(filename);
return 1;
}
/* vim: set ts=8 sts=8 sw=8 noet: */