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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <tiffio.h>
#include "loader.h"
#ifdef USE_X11
# include "viewer.h"
#endif
struct tiff_state {
TIFF* tif;
char emsg[1024];
uint32 width,height;
uint16 config,nsamples;
uint32* row;
uint16 resunit;
float xres,yres;
};
static void*
tiff_init(FILE *fp, char *filename, struct ida_image_info *i)
{
struct tiff_state *h;
fclose(fp);
h = malloc(sizeof(*h));
memset(h,0,sizeof(*h));
h->tif = TIFFOpen(filename,"r");
if (NULL == h->tif)
goto oops;
TIFFGetField(h->tif, TIFFTAG_IMAGEWIDTH, &h->width);
TIFFGetField(h->tif, TIFFTAG_IMAGELENGTH, &h->height);
TIFFGetField(h->tif, TIFFTAG_PLANARCONFIG, &h->config);
TIFFGetField(h->tif, TIFFTAG_SAMPLESPERPIXEL, &h->nsamples);
h->row = malloc(TIFFScanlineSize(h->tif));
if (debug)
fprintf(stderr,"tiff: %ldx%ld, planar=%d, nsamples=%d, scanline=%ld\n",
h->width,h->height,h->config,h->nsamples,
TIFFScanlineSize(h->tif));
i->width = h->width;
i->height = h->height;
if (TIFFGetField(h->tif, TIFFTAG_RESOLUTIONUNIT, &h->resunit) &&
TIFFGetField(h->tif, TIFFTAG_XRESOLUTION, &h->xres) &&
TIFFGetField(h->tif, TIFFTAG_YRESOLUTION, &h->yres)) {
switch (h->resunit) {
case RESUNIT_NONE:
break;
case RESUNIT_INCH:
i->dpi = h->xres;
break;
case RESUNIT_CENTIMETER:
i->dpi = res_cm_to_inch(h->xres);
break;
}
}
return h;
oops:
if (h->tif)
TIFFClose(h->tif);
free(h);
return NULL;
}
static void
tiff_read(unsigned char *dst, int line, void *data)
{
struct tiff_state *h = data;
int s;
if (h->config == PLANARCONFIG_CONTIG) {
TIFFReadScanline(h->tif, h->row, line, 0);
} else if (h->config == PLANARCONFIG_SEPARATE) {
for (s = 0; s < h->nsamples; s++)
TIFFReadScanline(h->tif, h->row, line, s);
}
switch (h->nsamples) {
case 1:
/* gray */
load_gray(dst,(unsigned char*)(h->row),h->width);
break;
case 3:
/* rgb */
memcpy(dst,h->row,3*h->width);
break;
case 4:
/* rgb+alpha */
load_rgba(dst,(unsigned char*)(h->row),h->width);
break;
}
}
static void
tiff_done(void *data)
{
struct tiff_state *h = data;
TIFFClose(h->tif);
free(h->row);
free(h);
}
struct ida_loader tiff1_loader = {
magic: "MM\x00\x2a",
moff: 0,
mlen: 4,
name: "libtiff",
init: tiff_init,
read: tiff_read,
done: tiff_done,
};
struct ida_loader tiff2_loader = {
magic: "II\x2a\x00",
moff: 0,
mlen: 4,
name: "libtiff",
init: tiff_init,
read: tiff_read,
done: tiff_done,
};
#ifdef USE_X11
/* ---------------------------------------------------------------------- */
/* save */
static int
tiff_write(FILE *fp, struct ida_image *img)
{
TIFF *TiffHndl;
tdata_t buf;
int y;
TiffHndl = TIFFFdOpen(fileno(fp),NULL,"w");
if (TiffHndl == NULL)
return -1;
TIFFSetField(TiffHndl, TIFFTAG_IMAGEWIDTH, img->i.width);
TIFFSetField(TiffHndl, TIFFTAG_IMAGELENGTH, img->i.height);
TIFFSetField(TiffHndl, TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG);
TIFFSetField(TiffHndl, TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_RGB);
TIFFSetField(TiffHndl, TIFFTAG_BITSPERSAMPLE, 8);
TIFFSetField(TiffHndl, TIFFTAG_SAMPLESPERPIXEL, 3);
TIFFSetField(TiffHndl, TIFFTAG_ROWSPERSTRIP, 2);
TIFFSetField(TiffHndl, TIFFTAG_ORIENTATION, ORIENTATION_TOPLEFT);
#if 0 /* fixme: make this configureable */
TIFFSetField(TiffHndl, TIFFTAG_COMPRESSION, COMPRESSION_LZW);
TIFFSetField(TiffHndl, TIFFTAG_PREDICTOR, 2);
#endif
if (img->i.dpi) {
float dpi = img->i.dpi;
TIFFSetField(TiffHndl, TIFFTAG_RESOLUTIONUNIT, RESUNIT_INCH);
TIFFSetField(TiffHndl, TIFFTAG_XRESOLUTION, dpi);
TIFFSetField(TiffHndl, TIFFTAG_YRESOLUTION, dpi);
}
for (y = 0; y < img->i.height; y++) {
buf = img->data + 3*img->i.width*y;
TIFFWriteScanline(TiffHndl, buf, y, 0);
}
TIFFClose(TiffHndl);
return 0;
}
struct ida_writer tiff_writer = {
label: "TIFF",
ext: { "tif", "tiff", NULL},
write: tiff_write,
};
#endif
|