2000-10-05 21:40:37 +00:00
|
|
|
|
/* GdkPixbuf library - TIFF image loader
|
1999-10-20 21:20:49 +00:00
|
|
|
|
*
|
1999-07-01 06:59:07 +00:00
|
|
|
|
* Copyright (C) 1999 Mark Crichton
|
1999-10-20 21:20:49 +00:00
|
|
|
|
* Copyright (C) 1999 The Free Software Foundation
|
|
|
|
|
*
|
|
|
|
|
* Authors: Mark Crichton <crichton@gimp.org>
|
|
|
|
|
* Federico Mena-Quintero <federico@gimp.org>
|
2000-01-07 18:29:13 +00:00
|
|
|
|
* Jonathan Blandford <jrb@redhat.com>
|
1999-07-01 06:59:07 +00:00
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-07-01 06:59:07 +00:00
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* Lesser General Public License for more details.
|
1999-07-01 06:59:07 +00:00
|
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1999-10-20 21:20:49 +00:00
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1999-07-01 06:59:07 +00:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Following code (almost) blatantly ripped from Imlib */
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
1999-10-28 14:46:46 +00:00
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
2000-08-01 21:43:56 +00:00
|
|
|
|
#ifdef HAVE_UNISTD_H
|
1999-10-28 16:40:15 +00:00
|
|
|
|
#include <unistd.h>
|
2000-08-01 21:43:56 +00:00
|
|
|
|
#endif
|
1999-12-02 20:44:43 +00:00
|
|
|
|
#include <tiffio.h>
|
2000-04-11 07:03:25 +00:00
|
|
|
|
#include "gdk-pixbuf-private.h"
|
1999-12-02 20:44:43 +00:00
|
|
|
|
#include "gdk-pixbuf-io.h"
|
1999-07-01 06:59:07 +00:00
|
|
|
|
|
2000-07-22 23:50:19 +00:00
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
#define O_RDWR _O_RDWR
|
|
|
|
|
#endif
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
|
|
|
|
|
1999-10-28 16:40:15 +00:00
|
|
|
|
typedef struct _TiffData TiffData;
|
|
|
|
|
struct _TiffData
|
1999-10-20 21:20:49 +00:00
|
|
|
|
{
|
1999-11-04 18:18:07 +00:00
|
|
|
|
ModulePreparedNotifyFunc prepare_func;
|
|
|
|
|
ModuleUpdatedNotifyFunc update_func;
|
1999-10-28 16:40:15 +00:00
|
|
|
|
gpointer user_data;
|
|
|
|
|
|
|
|
|
|
gchar *tempname;
|
|
|
|
|
FILE *file;
|
|
|
|
|
gboolean all_okay;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
GdkPixbuf *
|
2000-02-22 00:29:00 +00:00
|
|
|
|
gdk_pixbuf__tiff_image_load_real (FILE *f, TiffData *context)
|
1999-07-01 06:59:07 +00:00
|
|
|
|
{
|
1999-10-18 19:29:45 +00:00
|
|
|
|
TIFF *tiff;
|
1999-10-26 20:43:39 +00:00
|
|
|
|
guchar *pixels = NULL;
|
|
|
|
|
guchar *tmppix;
|
1999-10-18 19:29:45 +00:00
|
|
|
|
gint w, h, x, y, num_pixs, fd;
|
|
|
|
|
uint32 *rast, *tmp_rast;
|
1999-10-28 16:40:15 +00:00
|
|
|
|
GdkPixbuf *pixbuf;
|
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
fd = fileno (f);
|
|
|
|
|
tiff = TIFFFdOpen (fd, "libpixbuf-tiff", "r");
|
1999-07-01 06:59:07 +00:00
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
if (!tiff)
|
|
|
|
|
return NULL;
|
1999-07-01 06:59:07 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
TIFFGetField (tiff, TIFFTAG_IMAGEWIDTH, &w);
|
|
|
|
|
TIFFGetField (tiff, TIFFTAG_IMAGELENGTH, &h);
|
1999-10-18 19:29:45 +00:00
|
|
|
|
num_pixs = w * h;
|
2000-04-11 07:03:25 +00:00
|
|
|
|
pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, w, h);
|
1999-10-28 16:40:15 +00:00
|
|
|
|
|
|
|
|
|
if (context)
|
1999-11-04 18:18:07 +00:00
|
|
|
|
(* context->prepare_func) (pixbuf, context->user_data);
|
1999-07-01 06:59:07 +00:00
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
/* Yes, it needs to be _TIFFMalloc... */
|
1999-10-20 21:20:49 +00:00
|
|
|
|
rast = (uint32 *) _TIFFmalloc (num_pixs * sizeof (uint32));
|
1999-07-01 06:59:07 +00:00
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
if (!rast) {
|
1999-10-20 21:20:49 +00:00
|
|
|
|
TIFFClose (tiff);
|
1999-10-18 19:29:45 +00:00
|
|
|
|
return NULL;
|
1999-07-01 06:59:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
if (TIFFReadRGBAImage (tiff, w, h, rast, 0)) {
|
1999-10-28 16:40:15 +00:00
|
|
|
|
pixels = gdk_pixbuf_get_pixels (pixbuf);
|
1999-10-18 19:29:45 +00:00
|
|
|
|
if (!pixels) {
|
1999-10-20 21:20:49 +00:00
|
|
|
|
_TIFFfree (rast);
|
|
|
|
|
TIFFClose (tiff);
|
1999-10-18 19:29:45 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
tmppix = pixels;
|
|
|
|
|
|
|
|
|
|
for (y = 0; y < h; y++) {
|
|
|
|
|
/* Unexplainable...are tiffs backwards? */
|
|
|
|
|
/* Also looking at the GIMP plugin, this
|
|
|
|
|
* whole reading thing can be a bit more
|
|
|
|
|
* robust.
|
|
|
|
|
*/
|
|
|
|
|
tmp_rast = rast + ((h - y - 1) * w);
|
|
|
|
|
for (x = 0; x < w; x++) {
|
1999-10-20 21:20:49 +00:00
|
|
|
|
tmppix[0] = TIFFGetR (*tmp_rast);
|
|
|
|
|
tmppix[1] = TIFFGetG (*tmp_rast);
|
|
|
|
|
tmppix[2] = TIFFGetB (*tmp_rast);
|
|
|
|
|
tmppix[3] = TIFFGetA (*tmp_rast);
|
1999-10-18 19:29:45 +00:00
|
|
|
|
tmp_rast++;
|
|
|
|
|
tmppix += 4;
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-07-01 06:59:07 +00:00
|
|
|
|
}
|
1999-10-20 21:20:49 +00:00
|
|
|
|
_TIFFfree (rast);
|
|
|
|
|
TIFFClose (tiff);
|
1999-07-01 06:59:07 +00:00
|
|
|
|
|
1999-11-04 18:18:07 +00:00
|
|
|
|
if (context) {
|
2000-01-05 23:06:13 +00:00
|
|
|
|
(* context->update_func) (pixbuf, 0, 0, w, h, context->user_data);
|
2000-01-07 18:29:13 +00:00
|
|
|
|
gdk_pixbuf_unref (pixbuf);
|
1999-11-04 18:18:07 +00:00
|
|
|
|
}
|
1999-10-28 16:40:15 +00:00
|
|
|
|
|
|
|
|
|
return pixbuf;
|
1999-07-01 06:59:07 +00:00
|
|
|
|
}
|
1999-10-28 14:46:46 +00:00
|
|
|
|
|
1999-10-28 16:40:15 +00:00
|
|
|
|
|
1999-10-28 14:46:46 +00:00
|
|
|
|
|
1999-10-28 16:40:15 +00:00
|
|
|
|
/* Static loader */
|
1999-10-28 14:46:46 +00:00
|
|
|
|
|
1999-10-28 16:40:15 +00:00
|
|
|
|
GdkPixbuf *
|
2000-02-22 00:29:00 +00:00
|
|
|
|
gdk_pixbuf__tiff_image_load (FILE *f)
|
1999-10-28 14:46:46 +00:00
|
|
|
|
{
|
2000-02-22 00:29:00 +00:00
|
|
|
|
return gdk_pixbuf__tiff_image_load_real (f, NULL);
|
1999-10-28 16:40:15 +00:00
|
|
|
|
}
|
1999-10-28 14:46:46 +00:00
|
|
|
|
|
1999-10-28 16:40:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Progressive loader */
|
|
|
|
|
/*
|
|
|
|
|
* Tiff loading progressively cannot be done. We write it to a file, then load
|
|
|
|
|
* the file when it's done. It's not pretty.
|
|
|
|
|
*/
|
1999-10-28 14:46:46 +00:00
|
|
|
|
|
1999-11-04 18:18:07 +00:00
|
|
|
|
|
1999-10-28 14:46:46 +00:00
|
|
|
|
gpointer
|
2000-02-22 00:29:00 +00:00
|
|
|
|
gdk_pixbuf__tiff_image_begin_load (ModulePreparedNotifyFunc prepare_func,
|
|
|
|
|
ModuleUpdatedNotifyFunc update_func,
|
|
|
|
|
ModuleFrameDoneNotifyFunc frame_done_func,
|
|
|
|
|
ModuleAnimationDoneNotifyFunc anim_done_func,
|
2000-10-18 18:42:54 +00:00
|
|
|
|
gpointer user_data,
|
|
|
|
|
GError **error)
|
1999-10-28 14:46:46 +00:00
|
|
|
|
{
|
|
|
|
|
TiffData *context;
|
|
|
|
|
gint fd;
|
1999-10-28 16:40:15 +00:00
|
|
|
|
|
1999-10-28 14:46:46 +00:00
|
|
|
|
context = g_new (TiffData, 1);
|
1999-11-04 18:18:07 +00:00
|
|
|
|
context->prepare_func = prepare_func;
|
1999-11-04 19:22:45 +00:00
|
|
|
|
context->update_func = update_func;
|
1999-10-28 14:46:46 +00:00
|
|
|
|
context->user_data = user_data;
|
1999-10-28 16:40:15 +00:00
|
|
|
|
context->all_okay = TRUE;
|
2000-11-11 00:34:47 +00:00
|
|
|
|
fd = g_file_open_tmp ("gdkpixbuf-tif-tmp.XXXXXX", &context->tempname,
|
|
|
|
|
NULL);
|
1999-10-28 16:40:15 +00:00
|
|
|
|
if (fd < 0) {
|
|
|
|
|
g_free (context);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1999-10-28 14:46:46 +00:00
|
|
|
|
|
|
|
|
|
context->file = fdopen (fd, "w");
|
1999-10-28 16:40:15 +00:00
|
|
|
|
if (context->file == NULL) {
|
2000-10-09 17:22:20 +00:00
|
|
|
|
g_free (context->tempname);
|
1999-10-28 16:40:15 +00:00
|
|
|
|
g_free (context);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-28 14:46:46 +00:00
|
|
|
|
return context;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
2000-02-22 00:29:00 +00:00
|
|
|
|
gdk_pixbuf__tiff_image_stop_load (gpointer data)
|
1999-10-28 14:46:46 +00:00
|
|
|
|
{
|
|
|
|
|
TiffData *context = (TiffData*) data;
|
1999-10-28 16:40:15 +00:00
|
|
|
|
|
|
|
|
|
g_return_if_fail (data != NULL);
|
|
|
|
|
|
|
|
|
|
fflush (context->file);
|
|
|
|
|
rewind (context->file);
|
|
|
|
|
if (context->all_okay)
|
2000-02-22 00:29:00 +00:00
|
|
|
|
gdk_pixbuf__tiff_image_load_real (context->file, context);
|
1999-10-28 16:40:15 +00:00
|
|
|
|
|
1999-10-28 14:46:46 +00:00
|
|
|
|
fclose (context->file);
|
1999-10-28 16:40:15 +00:00
|
|
|
|
unlink (context->tempname);
|
2000-07-22 23:50:19 +00:00
|
|
|
|
g_free (context->tempname);
|
1999-10-28 14:46:46 +00:00
|
|
|
|
g_free ((TiffData *) context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
gboolean
|
2000-02-22 00:29:00 +00:00
|
|
|
|
gdk_pixbuf__tiff_image_load_increment (gpointer data, guchar *buf, guint size)
|
1999-10-28 14:46:46 +00:00
|
|
|
|
{
|
|
|
|
|
TiffData *context = (TiffData *) data;
|
|
|
|
|
|
1999-10-28 16:40:15 +00:00
|
|
|
|
g_return_val_if_fail (data != NULL, FALSE);
|
|
|
|
|
|
|
|
|
|
if (fwrite (buf, sizeof (guchar), size, context->file) != size) {
|
|
|
|
|
context->all_okay = FALSE;
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-28 14:46:46 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
1999-10-28 16:40:15 +00:00
|
|
|
|
|