1999-10-20 21:20:49 +00:00
|
|
|
|
/* GdkPixbuf library - Main loading interface.
|
1999-01-04 23:53:12 +00:00
|
|
|
|
*
|
1999-10-20 21:20:49 +00:00
|
|
|
|
* Copyright (C) 1999 The Free Software Foundation
|
|
|
|
|
*
|
|
|
|
|
* Authors: Miguel de Icaza <miguel@gnu.org>
|
|
|
|
|
* Federico Mena-Quintero <federico@gimp.org>
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
|
* 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
|
|
|
|
|
* Library General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
|
* 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-01-04 23:53:12 +00:00
|
|
|
|
*/
|
1999-08-09 06:09:24 +00:00
|
|
|
|
|
1999-01-04 23:53:12 +00:00
|
|
|
|
#include <config.h>
|
1999-08-09 06:09:24 +00:00
|
|
|
|
#include <string.h>
|
1999-10-26 20:43:39 +00:00
|
|
|
|
#include "gdk-pixbuf-io.h"
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
|
|
|
|
|
1999-01-05 04:31:03 +00:00
|
|
|
|
static gboolean
|
1999-10-20 21:20:49 +00:00
|
|
|
|
pixbuf_check_png (guchar *buffer, int size)
|
1999-01-05 04:31:03 +00:00
|
|
|
|
{
|
|
|
|
|
if (size < 28)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
if (buffer [0] != 0x89 ||
|
|
|
|
|
buffer [1] != 'P' ||
|
|
|
|
|
buffer [2] != 'N' ||
|
|
|
|
|
buffer [3] != 'G' ||
|
|
|
|
|
buffer [4] != 0x0d ||
|
|
|
|
|
buffer [5] != 0x0a ||
|
|
|
|
|
buffer [6] != 0x1a ||
|
|
|
|
|
buffer [7] != 0x0a)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
1999-10-20 21:20:49 +00:00
|
|
|
|
pixbuf_check_jpeg (guchar *buffer, int size)
|
1999-01-05 04:31:03 +00:00
|
|
|
|
{
|
|
|
|
|
if (size < 10)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
if (buffer [0] != 0xff || buffer [1] != 0xd8)
|
|
|
|
|
return FALSE;
|
1999-08-09 06:09:24 +00:00
|
|
|
|
|
1999-01-05 04:31:03 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
1999-10-20 21:20:49 +00:00
|
|
|
|
pixbuf_check_tiff (guchar *buffer, int size)
|
1999-01-05 04:31:03 +00:00
|
|
|
|
{
|
|
|
|
|
if (size < 10)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
1999-08-09 06:09:24 +00:00
|
|
|
|
if (buffer [0] == 'M' &&
|
|
|
|
|
buffer [1] == 'M' &&
|
|
|
|
|
buffer [2] == 0 &&
|
1999-07-19 02:13:34 +00:00
|
|
|
|
buffer [3] == 0x2a)
|
1999-01-05 04:31:03 +00:00
|
|
|
|
return TRUE;
|
|
|
|
|
|
1999-08-09 06:09:24 +00:00
|
|
|
|
if (buffer [0] == 'I' &&
|
|
|
|
|
buffer [1] == 'I' &&
|
|
|
|
|
buffer [2] == 0x2a &&
|
1999-07-19 02:13:34 +00:00
|
|
|
|
buffer [3] == 0)
|
1999-01-05 04:31:03 +00:00
|
|
|
|
return TRUE;
|
1999-08-09 06:09:24 +00:00
|
|
|
|
|
1999-01-05 04:31:03 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
1999-10-20 21:20:49 +00:00
|
|
|
|
pixbuf_check_gif (guchar *buffer, int size)
|
1999-01-05 04:31:03 +00:00
|
|
|
|
{
|
|
|
|
|
if (size < 20)
|
|
|
|
|
return FALSE;
|
1999-08-09 06:09:24 +00:00
|
|
|
|
|
1999-01-05 04:31:03 +00:00
|
|
|
|
if (strncmp (buffer, "GIF8", 4) == 0)
|
|
|
|
|
return TRUE;
|
1999-08-09 06:09:24 +00:00
|
|
|
|
|
1999-01-05 04:31:03 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
1999-10-20 21:20:49 +00:00
|
|
|
|
pixbuf_check_xpm (guchar *buffer, int size)
|
1999-01-05 04:31:03 +00:00
|
|
|
|
{
|
|
|
|
|
if (size < 20)
|
|
|
|
|
return FALSE;
|
1999-08-09 06:09:24 +00:00
|
|
|
|
|
1999-01-05 04:31:03 +00:00
|
|
|
|
if (strncmp (buffer, "/* XPM */", 9) == 0)
|
|
|
|
|
return TRUE;
|
1999-08-09 06:09:24 +00:00
|
|
|
|
|
1999-01-05 04:31:03 +00:00
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static gboolean
|
1999-11-05 00:16:10 +00:00
|
|
|
|
pixbuf_check_pnm (guchar *buffer, int size)
|
1999-01-05 04:31:03 +00:00
|
|
|
|
{
|
|
|
|
|
if (size < 20)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
1999-10-18 19:29:45 +00:00
|
|
|
|
if (buffer [0] == 'P') {
|
1999-01-05 04:31:03 +00:00
|
|
|
|
if (buffer [1] == '1' ||
|
|
|
|
|
buffer [1] == '2' ||
|
|
|
|
|
buffer [1] == '3' ||
|
|
|
|
|
buffer [1] == '4' ||
|
|
|
|
|
buffer [1] == '5' ||
|
|
|
|
|
buffer [1] == '6')
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
1999-11-05 21:29:33 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
pixbuf_check_sunras (guchar *buffer, int size)
|
|
|
|
|
{
|
|
|
|
|
if (size < 32)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
if (buffer [0] != 0x59 ||
|
|
|
|
|
buffer [1] != 0xA6 ||
|
|
|
|
|
buffer [2] != 0x6A ||
|
|
|
|
|
buffer [3] != 0x95)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-05 00:16:10 +00:00
|
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
static gboolean
|
|
|
|
|
pixbuf_check_bmp (guchar *buffer, int size)
|
|
|
|
|
{
|
|
|
|
|
if (size < 20)
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
if (buffer [0] != 'B' || buffer [1] != 'M')
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
#endif
|
1999-01-05 04:31:03 +00:00
|
|
|
|
|
1999-10-28 14:46:46 +00:00
|
|
|
|
GdkPixbufModule file_formats [] = {
|
1999-10-27 19:15:37 +00:00
|
|
|
|
{ "png", pixbuf_check_png, NULL, NULL, NULL, NULL, NULL, NULL },
|
|
|
|
|
{ "jpeg", pixbuf_check_jpeg, NULL, NULL, NULL, NULL, NULL, NULL },
|
|
|
|
|
{ "tiff", pixbuf_check_tiff, NULL, NULL, NULL, NULL, NULL, NULL },
|
|
|
|
|
{ "gif", pixbuf_check_gif, NULL, NULL, NULL, NULL, NULL, NULL },
|
1999-10-22 21:05:16 +00:00
|
|
|
|
#define XPM_FILE_FORMAT_INDEX 4
|
1999-10-27 19:15:37 +00:00
|
|
|
|
{ "xpm", pixbuf_check_xpm, NULL, NULL, NULL, NULL, NULL, NULL },
|
1999-11-05 00:16:10 +00:00
|
|
|
|
{ "pnm", pixbuf_check_pnm, NULL, NULL, NULL, NULL, NULL, NULL },
|
1999-11-05 21:29:33 +00:00
|
|
|
|
{ "ras", pixbuf_check_sunras, NULL, NULL, NULL, NULL, NULL, NULL },
|
1999-10-20 21:20:49 +00:00
|
|
|
|
#if 0
|
1999-10-27 19:15:37 +00:00
|
|
|
|
{ "bmp", pixbuf_check_bmp, NULL, NULL, NULL, NULL, NULL, NULL },
|
1999-10-20 21:20:49 +00:00
|
|
|
|
#endif
|
1999-10-27 18:55:00 +00:00
|
|
|
|
{ NULL, NULL, NULL, NULL, NULL, NULL, NULL }
|
1999-01-04 23:53:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
1999-10-29 19:27:51 +00:00
|
|
|
|
|
|
|
|
|
/* actually load the image handler - gdk_pixbuf_get_module only get a */
|
|
|
|
|
/* reference to the module to load, it doesn't actually load it */
|
|
|
|
|
/* perhaps these actions should be combined in one function */
|
|
|
|
|
void
|
|
|
|
|
gdk_pixbuf_load_module (GdkPixbufModule *image_module)
|
1999-01-04 23:53:12 +00:00
|
|
|
|
{
|
1999-07-19 02:13:34 +00:00
|
|
|
|
char *module_name;
|
1999-01-05 04:31:03 +00:00
|
|
|
|
char *path;
|
|
|
|
|
GModule *module;
|
1999-10-26 23:26:16 +00:00
|
|
|
|
gpointer load_sym;
|
1999-08-09 06:09:24 +00:00
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
g_return_if_fail(image_module->module == NULL);
|
|
|
|
|
|
|
|
|
|
module_name = g_strconcat ("pixbuf-", image_module->module_name, NULL);
|
1999-01-05 04:31:03 +00:00
|
|
|
|
path = g_module_build_path (PIXBUF_LIBDIR, module_name);
|
1999-10-27 18:55:00 +00:00
|
|
|
|
|
1999-01-05 04:31:03 +00:00
|
|
|
|
module = g_module_open (path, G_MODULE_BIND_LAZY);
|
1999-07-17 20:03:34 +00:00
|
|
|
|
if (!module) {
|
1999-10-27 18:55:00 +00:00
|
|
|
|
/* Debug feature, check in present working directory */
|
|
|
|
|
g_free(path);
|
|
|
|
|
path = g_module_build_path("", module_name);
|
|
|
|
|
module = g_module_open(path, G_MODULE_BIND_LAZY);
|
|
|
|
|
|
|
|
|
|
if (!module) {
|
|
|
|
|
g_warning ("Unable to load module: %s: %s", path, g_module_error());
|
|
|
|
|
g_free (module_name);
|
|
|
|
|
g_free(path);
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
printf("loaded module `%s'\n", module_name);
|
|
|
|
|
}
|
|
|
|
|
g_free(path);
|
|
|
|
|
} else {
|
|
|
|
|
printf("loaded module `%s'\n", path);
|
|
|
|
|
g_free (path);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
g_free (module_name);
|
1999-07-17 20:03:34 +00:00
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
image_module->module = module;
|
1999-01-05 04:31:03 +00:00
|
|
|
|
|
|
|
|
|
if (g_module_symbol (module, "image_load", &load_sym))
|
1999-10-26 20:43:39 +00:00
|
|
|
|
image_module->load = load_sym;
|
1999-10-22 21:05:16 +00:00
|
|
|
|
|
|
|
|
|
if (g_module_symbol (module, "image_load_xpm_data", &load_sym))
|
1999-10-26 20:43:39 +00:00
|
|
|
|
image_module->load_xpm_data = load_sym;
|
1999-10-26 23:26:16 +00:00
|
|
|
|
|
|
|
|
|
if (g_module_symbol (module, "image_begin_load", &load_sym))
|
|
|
|
|
image_module->begin_load = load_sym;
|
|
|
|
|
|
|
|
|
|
if (g_module_symbol (module, "image_stop_load", &load_sym))
|
|
|
|
|
image_module->stop_load = load_sym;
|
|
|
|
|
|
|
|
|
|
if (g_module_symbol (module, "image_load_increment", &load_sym))
|
|
|
|
|
image_module->load_increment = load_sym;
|
1999-01-04 23:53:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
|
|
|
|
|
1999-10-28 14:46:46 +00:00
|
|
|
|
GdkPixbufModule *
|
1999-10-26 20:43:39 +00:00
|
|
|
|
gdk_pixbuf_get_module (gchar *buffer, gint size)
|
|
|
|
|
{
|
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; file_formats [i].module_name; i++) {
|
|
|
|
|
if ((* file_formats [i].format_check) (buffer, size))
|
|
|
|
|
return &(file_formats[i]);
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 08:14:32 +00:00
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_new_from_file:
|
|
|
|
|
* @filename: Name of file to load.
|
|
|
|
|
*
|
|
|
|
|
* Creates a new pixbuf by loading an image from a file. The file format is
|
|
|
|
|
* detected automatically.
|
|
|
|
|
*
|
|
|
|
|
* Return value: A newly-created pixbuf, or NULL if any of several error
|
|
|
|
|
* conditions occurred: the file could not be opened, there was no loader for
|
|
|
|
|
* the file's format, there was not enough memory to allocate the image buffer,
|
|
|
|
|
* or the image file contained invalid data.
|
|
|
|
|
**/
|
1999-10-18 19:29:45 +00:00
|
|
|
|
GdkPixbuf *
|
1999-10-20 21:20:49 +00:00
|
|
|
|
gdk_pixbuf_new_from_file (const char *filename)
|
1999-01-04 23:53:12 +00:00
|
|
|
|
{
|
1999-10-18 19:29:45 +00:00
|
|
|
|
GdkPixbuf *pixbuf;
|
1999-10-26 20:43:39 +00:00
|
|
|
|
gint size;
|
1999-01-04 23:53:12 +00:00
|
|
|
|
FILE *f;
|
|
|
|
|
char buffer [128];
|
1999-10-28 14:46:46 +00:00
|
|
|
|
GdkPixbufModule *image_module;
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
f = fopen (filename, "r");
|
1999-01-04 23:53:12 +00:00
|
|
|
|
if (!f)
|
|
|
|
|
return NULL;
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
size = fread (&buffer, 1, sizeof (buffer), f);
|
1999-01-05 04:31:03 +00:00
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
if (size == 0) {
|
1999-08-09 06:09:24 +00:00
|
|
|
|
fclose (f);
|
1999-01-04 23:53:12 +00:00
|
|
|
|
return NULL;
|
1999-01-05 04:31:03 +00:00
|
|
|
|
}
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
image_module = gdk_pixbuf_get_module (buffer, size);
|
|
|
|
|
if (image_module){
|
1999-10-27 18:55:00 +00:00
|
|
|
|
if (image_module->module == NULL)
|
1999-10-29 19:27:51 +00:00
|
|
|
|
gdk_pixbuf_load_module (image_module);
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
1999-10-27 18:55:00 +00:00
|
|
|
|
if (image_module->load == NULL) {
|
1999-01-05 04:31:03 +00:00
|
|
|
|
fclose (f);
|
1999-10-26 20:43:39 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
fseek (f, 0, SEEK_SET);
|
|
|
|
|
pixbuf = (* image_module->load) (f);
|
|
|
|
|
fclose (f);
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
if (pixbuf)
|
|
|
|
|
g_assert (pixbuf->ref_count != 0);
|
|
|
|
|
|
|
|
|
|
return pixbuf;
|
|
|
|
|
} else {
|
|
|
|
|
g_warning ("Unable to find handler for file: %s", filename);
|
1999-01-04 23:53:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-01-05 04:31:03 +00:00
|
|
|
|
fclose (f);
|
1999-01-04 23:53:12 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1999-10-22 21:05:16 +00:00
|
|
|
|
|
|
|
|
|
GdkPixbuf *
|
|
|
|
|
gdk_pixbuf_new_from_xpm_data (const gchar **data)
|
|
|
|
|
{
|
|
|
|
|
GdkPixbuf *(* load_xpm_data) (const gchar **data);
|
|
|
|
|
GdkPixbuf *pixbuf;
|
1999-10-26 20:43:39 +00:00
|
|
|
|
|
1999-10-27 18:55:00 +00:00
|
|
|
|
if (file_formats[XPM_FILE_FORMAT_INDEX].module == NULL) {
|
1999-10-29 19:27:51 +00:00
|
|
|
|
gdk_pixbuf_load_module(&file_formats[XPM_FILE_FORMAT_INDEX]);
|
1999-10-22 21:05:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-10-27 18:55:00 +00:00
|
|
|
|
if (file_formats[XPM_FILE_FORMAT_INDEX].module == NULL) {
|
1999-10-22 21:05:16 +00:00
|
|
|
|
g_warning("Can't find gdk-pixbuf module for parsing inline XPM data");
|
|
|
|
|
return NULL;
|
1999-10-27 18:55:00 +00:00
|
|
|
|
} else if (file_formats[XPM_FILE_FORMAT_INDEX].load_xpm_data == NULL) {
|
|
|
|
|
g_warning("gdk-pixbuf XPM module lacks XPM data capability");
|
|
|
|
|
return NULL;
|
1999-10-22 21:05:16 +00:00
|
|
|
|
} else {
|
|
|
|
|
load_xpm_data = file_formats[XPM_FILE_FORMAT_INDEX].load_xpm_data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pixbuf = load_xpm_data(data);
|
|
|
|
|
|
|
|
|
|
return pixbuf;
|
|
|
|
|
}
|
1999-10-26 20:43:39 +00:00
|
|
|
|
|