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
|
2000-07-26 11:33:08 +00:00
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-10-20 21:20:49 +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-10-20 21:20:49 +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-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-11-22 20:43:58 +00:00
|
|
|
|
#include <glib.h>
|
2000-04-11 07:03:25 +00:00
|
|
|
|
#include "gdk-pixbuf-private.h"
|
1999-11-23 01:25:28 +00:00
|
|
|
|
#include "gdk-pixbuf-io.h"
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
2000-07-22 23:50:19 +00:00
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
#define STRICT
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
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-29 16:49:39 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
pixbuf_check_ico (guchar *buffer, int size)
|
|
|
|
|
{
|
|
|
|
|
/* Note that this may cause false positives, but .ico's don't
|
|
|
|
|
have a magic number.*/
|
|
|
|
|
if (size < 6)
|
|
|
|
|
return FALSE;
|
|
|
|
|
if (buffer [0] != 0x0 ||
|
|
|
|
|
buffer [1] != 0x0 ||
|
1999-12-04 18:17:52 +00:00
|
|
|
|
((buffer [2] != 0x1)&&(buffer[2]!=0x2)) ||
|
1999-11-29 16:49:39 +00:00
|
|
|
|
buffer [3] != 0x0 ||
|
|
|
|
|
buffer [5] != 0x0 )
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-05 00:16:10 +00:00
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-28 00:09:36 +00:00
|
|
|
|
static gboolean
|
|
|
|
|
pixbuf_check_wbmp (guchar *buffer, int size)
|
|
|
|
|
{
|
|
|
|
|
if(size < 10) /* at least */
|
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
|
|
if(buffer[0] == '\0' /* We only handle type 0 wbmp's for now */)
|
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
static 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-11-29 16:49:39 +00:00
|
|
|
|
{ "ico", pixbuf_check_ico, NULL, NULL, NULL, NULL, NULL, NULL },
|
1999-10-27 19:15:37 +00:00
|
|
|
|
{ "bmp", pixbuf_check_bmp, NULL, NULL, NULL, NULL, NULL, NULL },
|
2000-07-28 00:16:17 +00:00
|
|
|
|
{ "wbmp", pixbuf_check_wbmp, NULL, NULL, NULL, NULL, NULL, NULL },
|
1999-12-06 18:57:03 +00:00
|
|
|
|
{ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
|
1999-01-04 23:53:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
#ifdef USE_GMODULE
|
|
|
|
|
static gboolean
|
|
|
|
|
pixbuf_module_symbol (GModule *module, const char *module_name, const char *symbol_name, gpointer *symbol)
|
|
|
|
|
{
|
|
|
|
|
char *full_symbol_name = g_strconcat ("gdk_pixbuf__", module_name, "_", symbol_name, NULL);
|
|
|
|
|
gboolean return_value;
|
|
|
|
|
|
|
|
|
|
return_value = g_module_symbol (module, full_symbol_name, symbol);
|
|
|
|
|
g_free (full_symbol_name);
|
|
|
|
|
|
|
|
|
|
return return_value;
|
|
|
|
|
}
|
1999-10-29 19:27:51 +00:00
|
|
|
|
|
2000-07-22 23:50:19 +00:00
|
|
|
|
#ifdef G_OS_WIN32
|
|
|
|
|
|
|
|
|
|
/* What would be the right place for this function? Also
|
|
|
|
|
* gtk needs this function (to find the gtkrc and themes).
|
|
|
|
|
* But it seems stupid for the gdk-pixbuf DLL to depend
|
|
|
|
|
* on the gtk DLL. Should it be in the gdk DLL? Or should we
|
|
|
|
|
* have a small static library at the top gtk+ level?
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
|
gtk_win32_get_installation_directory (void)
|
|
|
|
|
{
|
|
|
|
|
static gboolean been_here = FALSE;
|
|
|
|
|
static gchar gtk_installation_dir[200];
|
|
|
|
|
gchar win_dir[100];
|
|
|
|
|
HKEY reg_key = NULL;
|
|
|
|
|
DWORD type;
|
|
|
|
|
DWORD nbytes = sizeof (gtk_installation_dir);
|
|
|
|
|
|
|
|
|
|
if (been_here)
|
|
|
|
|
return gtk_installation_dir;
|
|
|
|
|
|
|
|
|
|
been_here = TRUE;
|
|
|
|
|
|
|
|
|
|
if (RegOpenKeyEx (HKEY_LOCAL_MACHINE, "Software\\GNU\\GTk+", 0,
|
|
|
|
|
KEY_QUERY_VALUE, ®_key) != ERROR_SUCCESS
|
|
|
|
|
|| RegQueryValueEx (reg_key, "InstallationDirectory", 0,
|
|
|
|
|
&type, gtk_installation_dir, &nbytes) != ERROR_SUCCESS
|
|
|
|
|
|| type != REG_SZ)
|
|
|
|
|
{
|
|
|
|
|
/* Uh oh. Use hard-coded %WinDir%\gtk+ value */
|
|
|
|
|
GetWindowsDirectory (win_dir, sizeof (win_dir));
|
|
|
|
|
sprintf (gtk_installation_dir, "%s\\gtk+", win_dir);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (reg_key != NULL)
|
|
|
|
|
RegCloseKey (reg_key);
|
|
|
|
|
|
|
|
|
|
return gtk_installation_dir;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static char *
|
|
|
|
|
get_libdir (void)
|
|
|
|
|
{
|
|
|
|
|
static char *libdir = NULL;
|
|
|
|
|
|
|
|
|
|
if (libdir == NULL)
|
|
|
|
|
libdir = g_strdup_printf (gtk_win32_get_installation_directory (),
|
|
|
|
|
G_DIR_SEPARATOR_S,
|
|
|
|
|
"loaders",
|
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
|
|
return libdir;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#define PIXBUF_LIBDIR get_libdir ()
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
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;
|
2000-02-22 00:29:00 +00:00
|
|
|
|
char *name;
|
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
g_return_if_fail (image_module->module == NULL);
|
1999-10-26 20:43:39 +00:00
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
name = image_module->module_name;
|
|
|
|
|
|
2000-04-13 01:18:41 +00:00
|
|
|
|
module_name = g_strconcat ("pixbufloader-", name, NULL);
|
1999-01-05 04:31:03 +00:00
|
|
|
|
path = g_module_build_path (PIXBUF_LIBDIR, module_name);
|
1999-11-10 06:40:12 +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) {
|
2000-06-21 20:47:22 +00:00
|
|
|
|
/* Debug feature, check in GDK_PIXBUF_MODULEDIR, or working directory */
|
|
|
|
|
char *dir = g_getenv ("GDK_PIXBUF_MODULEDIR");
|
|
|
|
|
if (!dir)
|
|
|
|
|
dir = "";
|
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
g_free (path);
|
2000-06-21 20:47:22 +00:00
|
|
|
|
path = g_module_build_path (dir, module_name);
|
2000-01-02 03:59:22 +00:00
|
|
|
|
module = g_module_open (path, G_MODULE_BIND_LAZY);
|
1999-10-27 18:55:00 +00:00
|
|
|
|
|
|
|
|
|
if (!module) {
|
2000-01-02 03:59:22 +00:00
|
|
|
|
g_warning ("Unable to load module: %s: %s", path, g_module_error ());
|
1999-10-27 18:55:00 +00:00
|
|
|
|
g_free (module_name);
|
2000-01-02 03:59:22 +00:00
|
|
|
|
g_free (path);
|
1999-10-27 18:55:00 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2000-01-02 03:59:22 +00:00
|
|
|
|
g_free (path);
|
1999-10-27 18:55:00 +00:00
|
|
|
|
} else {
|
|
|
|
|
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
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
if (pixbuf_module_symbol (module, name, "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
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
if (pixbuf_module_symbol (module, name, "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
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
if (pixbuf_module_symbol (module, name, "image_begin_load", &load_sym))
|
1999-10-26 23:26:16 +00:00
|
|
|
|
image_module->begin_load = load_sym;
|
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
if (pixbuf_module_symbol (module, name, "image_stop_load", &load_sym))
|
1999-10-26 23:26:16 +00:00
|
|
|
|
image_module->stop_load = load_sym;
|
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
if (pixbuf_module_symbol (module, name, "image_load_increment", &load_sym))
|
1999-10-26 23:26:16 +00:00
|
|
|
|
image_module->load_increment = load_sym;
|
1999-12-17 21:42:47 +00:00
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
if (pixbuf_module_symbol (module, name, "image_load_animation", &load_sym))
|
1999-12-17 21:42:47 +00:00
|
|
|
|
image_module->load_animation = load_sym;
|
1999-01-04 23:53:12 +00:00
|
|
|
|
}
|
2000-02-22 00:29:00 +00:00
|
|
|
|
#else
|
|
|
|
|
|
|
|
|
|
#define mname(type,fn) gdk_pixbuf__ ## type ## _image_ ##fn
|
|
|
|
|
#define m_load(type) extern GdkPixbuf * mname(type,load) (FILE *f);
|
|
|
|
|
#define m_load_xpm_data(type) extern GdkPixbuf * mname(type,load_xpm_data) (const char **data);
|
|
|
|
|
#define m_begin_load(type) \
|
|
|
|
|
extern gpointer mname(type,begin_load) (ModulePreparedNotifyFunc prepare_func, \
|
|
|
|
|
ModuleUpdatedNotifyFunc update_func, \
|
|
|
|
|
ModuleFrameDoneNotifyFunc frame_done_func,\
|
|
|
|
|
ModuleAnimationDoneNotifyFunc anim_done_func,\
|
|
|
|
|
gpointer user_data);
|
|
|
|
|
#define m_stop_load(type) extern void mname(type,stop_load) (gpointer context);
|
|
|
|
|
#define m_load_increment(type) extern gboolean mname(type,load_increment) (gpointer context, const guchar *buf, guint size);
|
|
|
|
|
#define m_load_animation(type) extern GdkPixbufAnimation * mname(type,load_animation) (FILE *f);
|
|
|
|
|
|
2000-07-28 00:09:36 +00:00
|
|
|
|
/* PNG */
|
2000-02-22 00:29:00 +00:00
|
|
|
|
m_load (png);
|
|
|
|
|
m_begin_load (png);
|
|
|
|
|
m_load_increment (png);
|
|
|
|
|
m_stop_load (png);
|
2000-07-28 00:09:36 +00:00
|
|
|
|
/* BMP */
|
2000-02-22 00:29:00 +00:00
|
|
|
|
m_load (bmp);
|
|
|
|
|
m_begin_load (bmp);
|
|
|
|
|
m_load_increment (bmp);
|
|
|
|
|
m_stop_load (bmp);
|
2000-07-28 00:09:36 +00:00
|
|
|
|
/* WBMP */
|
|
|
|
|
m_load (wbmp);
|
|
|
|
|
m_begin_load (wbmp);
|
|
|
|
|
m_load_increment (wbmp);
|
|
|
|
|
m_stop_load (wbmp);
|
|
|
|
|
/* GIF */
|
2000-02-22 00:29:00 +00:00
|
|
|
|
m_load (gif);
|
|
|
|
|
m_begin_load (gif);
|
|
|
|
|
m_load_increment (gif);
|
|
|
|
|
m_stop_load (gif);
|
|
|
|
|
m_load_animation (gif);
|
2000-07-28 00:09:36 +00:00
|
|
|
|
/* ICO */
|
2000-02-22 00:29:00 +00:00
|
|
|
|
m_load (ico);
|
|
|
|
|
m_begin_load (ico);
|
|
|
|
|
m_load_increment (ico);
|
|
|
|
|
m_stop_load (ico);
|
2000-07-28 00:09:36 +00:00
|
|
|
|
/* JPEG */
|
2000-02-22 00:29:00 +00:00
|
|
|
|
m_load (jpeg);
|
|
|
|
|
m_begin_load (jpeg);
|
|
|
|
|
m_load_increment (jpeg);
|
|
|
|
|
m_stop_load (jpeg);
|
2000-07-28 00:09:36 +00:00
|
|
|
|
/* PNM */
|
2000-02-22 00:29:00 +00:00
|
|
|
|
m_load (pnm);
|
|
|
|
|
m_begin_load (pnm);
|
|
|
|
|
m_load_increment (pnm);
|
|
|
|
|
m_stop_load (pnm);
|
2000-07-28 00:09:36 +00:00
|
|
|
|
/* RAS */
|
2000-02-22 00:29:00 +00:00
|
|
|
|
m_load (ras);
|
|
|
|
|
m_begin_load (ras);
|
|
|
|
|
m_load_increment (ras);
|
|
|
|
|
m_stop_load (ras);
|
2000-07-28 00:09:36 +00:00
|
|
|
|
/* TIFF */
|
2000-02-22 00:29:00 +00:00
|
|
|
|
m_load (tiff);
|
|
|
|
|
m_begin_load (tiff);
|
|
|
|
|
m_load_increment (tiff);
|
|
|
|
|
m_stop_load (tiff);
|
2000-07-28 00:09:36 +00:00
|
|
|
|
/* XPM */
|
2000-02-22 00:29:00 +00:00
|
|
|
|
m_load (xpm);
|
|
|
|
|
m_load_xpm_data (xpm);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
gdk_pixbuf_load_module (GdkPixbufModule *image_module)
|
|
|
|
|
{
|
|
|
|
|
image_module->module = (void *) 1;
|
|
|
|
|
|
|
|
|
|
if (strcmp (image_module->module_name, "png") == 0){
|
|
|
|
|
image_module->load = mname (png,load);
|
|
|
|
|
image_module->begin_load = mname (png,begin_load);
|
|
|
|
|
image_module->load_increment = mname (png,load_increment);
|
|
|
|
|
image_module->stop_load = mname (png,stop_load);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp (image_module->module_name, "bmp") == 0){
|
|
|
|
|
image_module->load = mname (bmp,load);
|
|
|
|
|
image_module->begin_load = mname (bmp,begin_load);
|
|
|
|
|
image_module->load_increment = mname (bmp,load_increment);
|
|
|
|
|
image_module->stop_load = mname (bmp,stop_load);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-28 00:09:36 +00:00
|
|
|
|
if (strcmp (image_module->module_name, "wbmp") == 0){
|
|
|
|
|
image_module->load = mname (wbmp,load);
|
|
|
|
|
image_module->begin_load = mname (wbmp,begin_load);
|
|
|
|
|
image_module->load_increment = mname (wbmp,load_increment);
|
|
|
|
|
image_module->stop_load = mname (wbmp,stop_load);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
if (strcmp (image_module->module_name, "gif") == 0){
|
|
|
|
|
image_module->load = mname (gif,load);
|
|
|
|
|
image_module->begin_load = mname (gif,begin_load);
|
|
|
|
|
image_module->load_increment = mname (gif,load_increment);
|
|
|
|
|
image_module->stop_load = mname (gif,stop_load);
|
|
|
|
|
image_module->load_animation = mname (gif,load_animation);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp (image_module->module_name, "ico") == 0){
|
|
|
|
|
image_module->load = mname (ico,load);
|
|
|
|
|
image_module->begin_load = mname (ico,begin_load);
|
|
|
|
|
image_module->load_increment = mname (ico,load_increment);
|
|
|
|
|
image_module->stop_load = mname (ico,stop_load);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (strcmp (image_module->module_name, "jpeg") == 0){
|
|
|
|
|
image_module->load = mname (jpeg,load);
|
|
|
|
|
image_module->begin_load = mname (jpeg,begin_load);
|
|
|
|
|
image_module->load_increment = mname (jpeg,load_increment);
|
|
|
|
|
image_module->stop_load = mname (jpeg,stop_load);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (strcmp (image_module->module_name, "pnm") == 0){
|
|
|
|
|
image_module->load = mname (pnm,load);
|
|
|
|
|
image_module->begin_load = mname (pnm,begin_load);
|
|
|
|
|
image_module->load_increment = mname (pnm,load_increment);
|
|
|
|
|
image_module->stop_load = mname (pnm,stop_load);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (strcmp (image_module->module_name, "ras") == 0){
|
|
|
|
|
image_module->load = mname (ras,load);
|
|
|
|
|
image_module->begin_load = mname (ras,begin_load);
|
|
|
|
|
image_module->load_increment = mname (ras,load_increment);
|
|
|
|
|
image_module->stop_load = mname (ras,stop_load);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (strcmp (image_module->module_name, "tiff") == 0){
|
|
|
|
|
image_module->load = mname (tiff,load);
|
|
|
|
|
image_module->begin_load = mname (tiff,begin_load);
|
|
|
|
|
image_module->load_increment = mname (tiff,load_increment);
|
|
|
|
|
image_module->stop_load = mname (tiff,stop_load);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (strcmp (image_module->module_name, "xpm") == 0){
|
|
|
|
|
image_module->load = mname (xpm,load);
|
|
|
|
|
image_module->load_xpm_data = mname (xpm,load_xpm_data);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
|
|
|
|
|
2000-07-28 00:09:36 +00:00
|
|
|
|
GdkPixbufModule *
|
|
|
|
|
gdk_pixbuf_get_named_module (const char *name)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
for (i = 0; file_formats [i].module_name; i++) {
|
|
|
|
|
if (!strcmp(name, file_formats[i].module_name))
|
|
|
|
|
return &(file_formats[i]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-28 14:46:46 +00:00
|
|
|
|
GdkPixbufModule *
|
2000-01-02 03:59:22 +00:00
|
|
|
|
gdk_pixbuf_get_module (guchar *buffer, guint size)
|
1999-10-26 20:43:39 +00:00
|
|
|
|
{
|
2000-01-02 03:59:22 +00:00
|
|
|
|
int i;
|
1999-10-26 20:43:39 +00:00
|
|
|
|
|
|
|
|
|
for (i = 0; file_formats [i].module_name; i++) {
|
|
|
|
|
if ((* file_formats [i].format_check) (buffer, size))
|
|
|
|
|
return &(file_formats[i]);
|
|
|
|
|
}
|
2000-01-02 03:59:22 +00:00
|
|
|
|
|
1999-10-26 20:43:39 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-04 08:14:32 +00:00
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_new_from_file:
|
|
|
|
|
* @filename: Name of file to load.
|
1999-11-10 06:40:12 +00:00
|
|
|
|
*
|
1999-11-04 08:14:32 +00:00
|
|
|
|
* Creates a new pixbuf by loading an image from a file. The file format is
|
|
|
|
|
* detected automatically.
|
1999-11-10 06:40:12 +00:00
|
|
|
|
*
|
|
|
|
|
* Return value: A newly-created pixbuf with a reference count of 1, 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-11-04 08:14:32 +00:00
|
|
|
|
**/
|
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;
|
2000-01-02 03:59:22 +00:00
|
|
|
|
int size;
|
1999-01-04 23:53:12 +00:00
|
|
|
|
FILE *f;
|
2000-01-02 03:59:22 +00:00
|
|
|
|
guchar buffer [128];
|
1999-10-28 14:46:46 +00:00
|
|
|
|
GdkPixbufModule *image_module;
|
1999-01-04 23:53:12 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
g_return_val_if_fail (filename != NULL, NULL);
|
|
|
|
|
|
2000-07-22 23:50:19 +00:00
|
|
|
|
f = fopen (filename, "rb");
|
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);
|
|
|
|
|
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);
|
2000-01-02 03:59:22 +00:00
|
|
|
|
if (!image_module) {
|
|
|
|
|
g_warning ("Unable to find handler for file: %s", filename);
|
1999-10-26 20:43:39 +00:00
|
|
|
|
fclose (f);
|
2000-01-02 03:59:22 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
1999-10-20 21:20:49 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
if (image_module->module == NULL)
|
|
|
|
|
gdk_pixbuf_load_module (image_module);
|
1999-10-26 20:43:39 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
if (image_module->load == NULL) {
|
|
|
|
|
fclose (f);
|
|
|
|
|
return NULL;
|
1999-01-04 23:53:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
fseek (f, 0, SEEK_SET);
|
|
|
|
|
pixbuf = (* image_module->load) (f);
|
1999-01-05 04:31:03 +00:00
|
|
|
|
fclose (f);
|
2000-01-02 03:59:22 +00:00
|
|
|
|
|
|
|
|
|
return pixbuf;
|
1999-01-04 23:53:12 +00:00
|
|
|
|
}
|
1999-10-22 21:05:16 +00:00
|
|
|
|
|
1999-11-10 06:40:12 +00:00
|
|
|
|
/**
|
|
|
|
|
* gdk_pixbuf_new_from_xpm_data:
|
1999-11-10 22:48:46 +00:00
|
|
|
|
* @data: Pointer to inline XPM data.
|
1999-12-17 21:42:47 +00:00
|
|
|
|
*
|
1999-11-10 06:40:12 +00:00
|
|
|
|
* Creates a new pixbuf by parsing XPM data in memory. This data is commonly
|
|
|
|
|
* the result of including an XPM file into a program's C source.
|
1999-12-17 21:42:47 +00:00
|
|
|
|
*
|
1999-11-10 06:40:12 +00:00
|
|
|
|
* Return value: A newly-created pixbuf with a reference count of 1.
|
|
|
|
|
**/
|
1999-10-22 21:05:16 +00:00
|
|
|
|
GdkPixbuf *
|
2000-01-02 03:59:22 +00:00
|
|
|
|
gdk_pixbuf_new_from_xpm_data (const char **data)
|
1999-10-22 21:05:16 +00:00
|
|
|
|
{
|
2000-01-02 03:59:22 +00:00
|
|
|
|
GdkPixbuf *(* load_xpm_data) (const char **data);
|
|
|
|
|
GdkPixbuf *pixbuf;
|
1999-12-17 21:42:47 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
if (file_formats[XPM_FILE_FORMAT_INDEX].module == NULL)
|
|
|
|
|
gdk_pixbuf_load_module (&file_formats[XPM_FILE_FORMAT_INDEX]);
|
1999-12-17 21:42:47 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
if (file_formats[XPM_FILE_FORMAT_INDEX].module == NULL) {
|
|
|
|
|
g_warning ("Can't find gdk-pixbuf module for parsing inline XPM data");
|
1999-12-17 21:42:47 +00:00
|
|
|
|
return NULL;
|
2000-01-02 03:59:22 +00:00
|
|
|
|
} else if (file_formats[XPM_FILE_FORMAT_INDEX].load_xpm_data == NULL) {
|
|
|
|
|
g_warning ("gdk-pixbuf XPM module lacks XPM data capability");
|
1999-12-17 21:42:47 +00:00
|
|
|
|
return NULL;
|
2000-01-02 03:59:22 +00:00
|
|
|
|
} else
|
|
|
|
|
load_xpm_data = file_formats[XPM_FILE_FORMAT_INDEX].load_xpm_data;
|
1999-12-17 21:42:47 +00:00
|
|
|
|
|
2000-01-02 03:59:22 +00:00
|
|
|
|
pixbuf = (* load_xpm_data) (data);
|
|
|
|
|
return pixbuf;
|
1999-12-17 21:42:47 +00:00
|
|
|
|
}
|