1999-11-21 21:28:28 +00:00
|
|
|
|
/* GdkPixbuf library - Windows Bitmap image loader
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 1999 The Free Software Foundation
|
1999-07-08 16:04:16 +00:00
|
|
|
|
*
|
1999-11-21 21:28:28 +00:00
|
|
|
|
* Authors: Arjan van de Ven <arjan@fenrus.demon.nl>
|
|
|
|
|
* Federico Mena-Quintero <federico@gimp.org>
|
|
|
|
|
*
|
|
|
|
|
* Based on io-ras.c
|
1999-07-08 16:04:16 +00:00
|
|
|
|
*
|
|
|
|
|
* 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
|
1999-11-21 21:28:28 +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-08 16:04:16 +00:00
|
|
|
|
*/
|
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
Known bugs:
|
1999-12-04 18:17:52 +00:00
|
|
|
|
* 4bpp compressed files don't work
|
|
|
|
|
* bi-tonal files aren't tested with palettes
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
1999-07-08 16:04:16 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
#include <stdio.h>
|
1999-11-21 21:28:28 +00:00
|
|
|
|
#include <unistd.h>
|
1999-12-07 18:17:01 +00:00
|
|
|
|
#include <string.h>
|
2000-04-11 07:03:25 +00:00
|
|
|
|
#include "gdk-pixbuf-private.h"
|
|
|
|
|
#include "gdk-pixbuf-io.h"
|
1999-12-04 18:17:52 +00:00
|
|
|
|
|
2000-04-11 07:03:25 +00:00
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
1999-11-24 21:12:24 +00:00
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
These structures are actually dummies. These are according to
|
1999-12-04 18:17:52 +00:00
|
|
|
|
the "Windows API reference guide volume II" as written by
|
|
|
|
|
Borland International, but GCC fiddles with the alignment of
|
|
|
|
|
the internal members, so these aren't actually usable.
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
struct BitmapFileHeader {
|
1999-11-24 21:12:24 +00:00
|
|
|
|
gushort bfType;
|
|
|
|
|
guint bfSize;
|
|
|
|
|
guint reserverd;
|
|
|
|
|
guint bfOffbits;
|
1999-11-21 21:28:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct BitmapInfoHeader {
|
1999-11-24 21:12:24 +00:00
|
|
|
|
guint biSize;
|
|
|
|
|
guint biWidth;
|
|
|
|
|
guint biHeight;
|
|
|
|
|
gushort biPlanes;
|
|
|
|
|
gushort biBitCount;
|
|
|
|
|
guint biCompression;
|
|
|
|
|
guint biSizeImage;
|
|
|
|
|
guint biXPelsPerMeter;
|
|
|
|
|
guint biYPelsPerMeter;
|
|
|
|
|
guint biClrUsed;
|
|
|
|
|
guint biClrImportant;
|
1999-11-21 21:28:28 +00:00
|
|
|
|
};
|
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
/*
|
|
|
|
|
|
|
|
|
|
DumpBIH printf's the values in a BitmapInfoHeader to the screen, for
|
|
|
|
|
debugging purposes.
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
#if DUMPBIH
|
1999-11-24 21:12:24 +00:00
|
|
|
|
static void DumpBIH(unsigned char *BIH)
|
2000-03-06 08:53:57 +00:00
|
|
|
|
{
|
1999-11-24 21:12:24 +00:00
|
|
|
|
printf("biSize = %i \n",
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[3] << 24) + (BIH[2] << 16) + (BIH[1] << 8) +
|
|
|
|
|
(BIH[0]));
|
1999-11-24 21:12:24 +00:00
|
|
|
|
printf("biWidth = %i \n",
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[7] << 24) + (BIH[6] << 16) + (BIH[5] << 8) +
|
|
|
|
|
(BIH[4]));
|
1999-11-24 21:12:24 +00:00
|
|
|
|
printf("biHeight = %i \n",
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[11] << 24) + (BIH[10] << 16) + (BIH[9] << 8) +
|
1999-11-24 21:12:24 +00:00
|
|
|
|
(BIH[8]));
|
1999-12-04 18:17:52 +00:00
|
|
|
|
printf("biPlanes = %i \n", (int) (BIH[13] << 8) + (BIH[12]));
|
|
|
|
|
printf("biBitCount = %i \n", (int) (BIH[15] << 8) + (BIH[14]));
|
1999-11-24 21:12:24 +00:00
|
|
|
|
printf("biCompress = %i \n",
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[19] << 24) + (BIH[18] << 16) + (BIH[17] << 8) +
|
1999-11-24 21:12:24 +00:00
|
|
|
|
(BIH[16]));
|
|
|
|
|
printf("biSizeImage = %i \n",
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[23] << 24) + (BIH[22] << 16) + (BIH[21] << 8) +
|
1999-11-24 21:12:24 +00:00
|
|
|
|
(BIH[20]));
|
|
|
|
|
printf("biXPels = %i \n",
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[27] << 24) + (BIH[26] << 16) + (BIH[25] << 8) +
|
1999-11-24 21:12:24 +00:00
|
|
|
|
(BIH[24]));
|
|
|
|
|
printf("biYPels = %i \n",
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[31] << 24) + (BIH[30] << 16) + (BIH[29] << 8) +
|
1999-11-24 21:12:24 +00:00
|
|
|
|
(BIH[28]));
|
|
|
|
|
printf("biClrUsed = %i \n",
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[35] << 24) + (BIH[34] << 16) + (BIH[33] << 8) +
|
1999-11-24 21:12:24 +00:00
|
|
|
|
(BIH[32]));
|
|
|
|
|
printf("biClrImprtnt= %i \n",
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[39] << 24) + (BIH[38] << 16) + (BIH[37] << 8) +
|
1999-11-24 21:12:24 +00:00
|
|
|
|
(BIH[36]));
|
|
|
|
|
}
|
1999-12-04 18:17:52 +00:00
|
|
|
|
#endif
|
|
|
|
|
/* struct headerpair contains the decoded width/height/depth info for
|
|
|
|
|
the current bitmap */
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
struct headerpair {
|
|
|
|
|
guint width;
|
|
|
|
|
guint height;
|
|
|
|
|
guint depth;
|
|
|
|
|
guint Negative; /* Negative = 1 -> top down BMP,
|
|
|
|
|
Negative = 0 -> bottom up BMP */
|
|
|
|
|
};
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
1999-11-24 21:12:24 +00:00
|
|
|
|
/* Data needed for the "state" during decompression */
|
|
|
|
|
struct bmp_compression_state {
|
|
|
|
|
gint phase; /* 0 = clean,
|
|
|
|
|
1 = count received
|
|
|
|
|
2 = escape received
|
|
|
|
|
3 = in "raw" run
|
|
|
|
|
4 = Relative part 1 is next
|
|
|
|
|
5 = Relative part 2 is next
|
|
|
|
|
6 = end of image -> No more input allowed
|
|
|
|
|
*/
|
|
|
|
|
gint RunCount;
|
|
|
|
|
gint XDelta;
|
|
|
|
|
gint YDelta;
|
|
|
|
|
};
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
/* Progressive loading */
|
|
|
|
|
|
|
|
|
|
struct bmp_progressive_state {
|
|
|
|
|
ModulePreparedNotifyFunc prepared_func;
|
|
|
|
|
ModuleUpdatedNotifyFunc updated_func;
|
|
|
|
|
gpointer user_data;
|
|
|
|
|
|
|
|
|
|
gint HeaderSize; /* The size of the header-part (incl colormap) */
|
|
|
|
|
guchar *HeaderBuf; /* The buffer for the header (incl colormap) */
|
|
|
|
|
gint HeaderDone; /* The nr of bytes actually in HeaderBuf */
|
|
|
|
|
|
|
|
|
|
gint LineWidth; /* The width of a line in bytes */
|
|
|
|
|
guchar *LineBuf; /* Buffer for 1 line */
|
|
|
|
|
gint LineDone; /* # of bytes in LineBuf */
|
|
|
|
|
gint Lines; /* # of finished lines */
|
|
|
|
|
|
|
|
|
|
gint Type; /*
|
1999-12-04 18:17:52 +00:00
|
|
|
|
32 = RGB + alpha
|
1999-11-21 21:28:28 +00:00
|
|
|
|
24 = RGB
|
1999-12-04 18:17:52 +00:00
|
|
|
|
4 = 4 bpp colormapped
|
|
|
|
|
8 = 8 bpp colormapped
|
1999-11-21 21:28:28 +00:00
|
|
|
|
1 = 1 bit bitonal
|
|
|
|
|
*/
|
1999-11-24 21:12:24 +00:00
|
|
|
|
gint Compressed;
|
|
|
|
|
struct bmp_compression_state compr;
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct headerpair Header; /* Decoded (BE->CPU) header */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
GdkPixbuf *pixbuf; /* Our "target" */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
gpointer
|
2000-02-22 00:29:00 +00:00
|
|
|
|
gdk_pixbuf__bmp_image_begin_load(ModulePreparedNotifyFunc prepared_func,
|
|
|
|
|
ModuleUpdatedNotifyFunc updated_func,
|
|
|
|
|
ModuleFrameDoneNotifyFunc frame_done_func,
|
2000-03-06 08:53:57 +00:00
|
|
|
|
ModuleAnimationDoneNotifyFunc
|
|
|
|
|
anim_done_func, gpointer user_data);
|
2000-02-22 00:29:00 +00:00
|
|
|
|
|
|
|
|
|
void gdk_pixbuf__bmp_image_stop_load(gpointer data);
|
2000-03-06 08:53:57 +00:00
|
|
|
|
gboolean gdk_pixbuf__bmp_image_load_increment(gpointer data, guchar * buf,
|
|
|
|
|
guint size);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
1999-07-08 16:04:16 +00:00
|
|
|
|
|
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
/* Shared library entry point --> This should be removed when
|
|
|
|
|
generic_image_load enters gdk-pixbuf-io. */
|
2000-02-22 00:29:00 +00:00
|
|
|
|
GdkPixbuf *gdk_pixbuf__bmp_image_load(FILE * f)
|
1999-07-08 16:04:16 +00:00
|
|
|
|
{
|
1999-11-21 21:28:28 +00:00
|
|
|
|
guchar *membuf;
|
|
|
|
|
size_t length;
|
|
|
|
|
struct bmp_progressive_state *State;
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
GdkPixbuf *pb;
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
2000-03-06 08:53:57 +00:00
|
|
|
|
State =
|
|
|
|
|
gdk_pixbuf__bmp_image_begin_load(NULL, NULL, NULL, NULL, NULL);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
membuf = g_malloc(4096);
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
g_assert(membuf != NULL);
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
while (feof(f) == 0) {
|
|
|
|
|
length = fread(membuf, 1, 4096, f);
|
1999-11-24 21:12:24 +00:00
|
|
|
|
if (length > 0)
|
2000-03-06 08:53:57 +00:00
|
|
|
|
|
|
|
|
|
(void)
|
|
|
|
|
gdk_pixbuf__bmp_image_load_increment(State,
|
|
|
|
|
membuf,
|
|
|
|
|
length);
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
|
|
|
|
}
|
1999-11-21 21:28:28 +00:00
|
|
|
|
g_free(membuf);
|
|
|
|
|
if (State->pixbuf != NULL)
|
|
|
|
|
gdk_pixbuf_ref(State->pixbuf);
|
|
|
|
|
|
|
|
|
|
pb = State->pixbuf;
|
|
|
|
|
|
2000-02-22 00:29:00 +00:00
|
|
|
|
gdk_pixbuf__bmp_image_stop_load(State);
|
1999-12-04 18:17:52 +00:00
|
|
|
|
return pb;
|
1999-11-21 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-11-24 21:12:24 +00:00
|
|
|
|
static void DecodeHeader(unsigned char *BFH, unsigned char *BIH,
|
|
|
|
|
struct bmp_progressive_state *State)
|
1999-11-21 21:28:28 +00:00
|
|
|
|
{
|
1999-12-04 18:17:52 +00:00
|
|
|
|
#if DUMPBIH
|
|
|
|
|
DumpBIH(BIH);
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-11-24 21:12:24 +00:00
|
|
|
|
State->Header.width =
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[7] << 24) + (BIH[6] << 16) + (BIH[5] << 8) +
|
|
|
|
|
(BIH[4]);
|
1999-11-24 21:12:24 +00:00
|
|
|
|
State->Header.height =
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) (BIH[11] << 24) + (BIH[10] << 16) + (BIH[9] << 8) +
|
|
|
|
|
(BIH[8]);
|
|
|
|
|
State->Header.depth = (int) (BIH[15] << 8) + (BIH[14]);;
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
State->Type = State->Header.depth; /* This may be less trivial someday */
|
1999-11-24 21:12:24 +00:00
|
|
|
|
State->HeaderSize =
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(int) ((BFH[13] << 24) + (BFH[12] << 16) + (BFH[11] << 8) +
|
|
|
|
|
(BFH[10]));
|
|
|
|
|
if (State->HeaderSize >= 14 + 40 + 1024)
|
|
|
|
|
State->HeaderBuf =
|
|
|
|
|
g_realloc(State->HeaderBuf, State->HeaderSize);
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
|
|
|
|
if ((BIH[16] != 0) || (BIH[17] != 0) || (BIH[18] != 0)
|
|
|
|
|
|| (BIH[19] != 0)) {
|
|
|
|
|
State->Compressed = 1;
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
/* Negative heights indicates bottom-down pixelorder */
|
1999-11-24 21:12:24 +00:00
|
|
|
|
if (State->Header.height < 0) {
|
|
|
|
|
State->Header.height = -State->Header.height;
|
|
|
|
|
State->Header.Negative = 1;
|
|
|
|
|
}
|
|
|
|
|
if (State->Header.width < 0) {
|
|
|
|
|
State->Header.width = -State->Header.width;
|
|
|
|
|
State->Header.Negative = 0;
|
|
|
|
|
}
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
if (State->Type == 32)
|
|
|
|
|
State->LineWidth = State->Header.width * 4;
|
1999-11-21 21:28:28 +00:00
|
|
|
|
if (State->Type == 24)
|
|
|
|
|
State->LineWidth = State->Header.width * 3;
|
|
|
|
|
if (State->Type == 8)
|
|
|
|
|
State->LineWidth = State->Header.width * 1;
|
1999-12-04 18:17:52 +00:00
|
|
|
|
if (State->Type == 4)
|
|
|
|
|
State->LineWidth = (State->Header.width + 1) / 2;
|
1999-11-21 21:28:28 +00:00
|
|
|
|
if (State->Type == 1) {
|
|
|
|
|
State->LineWidth = State->Header.width / 8;
|
|
|
|
|
if ((State->Header.width & 7) != 0)
|
|
|
|
|
State->LineWidth++;
|
|
|
|
|
}
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
/* Pad to a 32 bit boundary */
|
1999-11-24 21:12:24 +00:00
|
|
|
|
if (((State->LineWidth % 4) > 0) && (State->Compressed == 0))
|
|
|
|
|
State->LineWidth = (State->LineWidth / 4) * 4 + 4;
|
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
if (State->LineBuf == NULL)
|
|
|
|
|
State->LineBuf = g_malloc(State->LineWidth);
|
|
|
|
|
|
|
|
|
|
g_assert(State->LineBuf != NULL);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (State->pixbuf == NULL) {
|
1999-12-04 18:17:52 +00:00
|
|
|
|
if (State->Type == 32)
|
|
|
|
|
State->pixbuf =
|
2000-04-11 07:03:25 +00:00
|
|
|
|
gdk_pixbuf_new(GDK_COLORSPACE_RGB, TRUE, 8,
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(gint) State->Header.width,
|
|
|
|
|
(gint) State->Header.height);
|
|
|
|
|
else
|
|
|
|
|
State->pixbuf =
|
2000-04-11 07:03:25 +00:00
|
|
|
|
gdk_pixbuf_new(GDK_COLORSPACE_RGB, FALSE, 8,
|
1999-12-04 18:17:52 +00:00
|
|
|
|
(gint) State->Header.width,
|
|
|
|
|
(gint) State->Header.height);
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
if (State->prepared_func != NULL)
|
|
|
|
|
/* Notify the client that we are ready to go */
|
2000-03-06 08:53:57 +00:00
|
|
|
|
(*State->prepared_func) (State->pixbuf, State->user_data);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
}
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* func - called when we have pixmap created (but no image data)
|
|
|
|
|
* user_data - passed as arg 1 to func
|
|
|
|
|
* return context (opaque to user)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
gpointer
|
2000-02-22 00:29:00 +00:00
|
|
|
|
gdk_pixbuf__bmp_image_begin_load(ModulePreparedNotifyFunc prepared_func,
|
|
|
|
|
ModuleUpdatedNotifyFunc updated_func,
|
|
|
|
|
ModuleFrameDoneNotifyFunc frame_done_func,
|
2000-03-06 08:53:57 +00:00
|
|
|
|
ModuleAnimationDoneNotifyFunc
|
|
|
|
|
anim_done_func, gpointer user_data)
|
1999-11-21 21:28:28 +00:00
|
|
|
|
{
|
|
|
|
|
struct bmp_progressive_state *context;
|
|
|
|
|
|
|
|
|
|
context = g_new0(struct bmp_progressive_state, 1);
|
|
|
|
|
context->prepared_func = prepared_func;
|
|
|
|
|
context->updated_func = updated_func;
|
|
|
|
|
context->user_data = user_data;
|
|
|
|
|
|
|
|
|
|
context->HeaderSize = 54;
|
1999-12-04 18:17:52 +00:00
|
|
|
|
context->HeaderBuf = g_malloc(14 + 40 + 1024);
|
|
|
|
|
/* 14 for the BitmapFileHeader, 40 for the BitmapImageHeader and
|
|
|
|
|
1024 for the colormap */
|
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
context->HeaderDone = 0;
|
|
|
|
|
|
|
|
|
|
context->LineWidth = 0;
|
|
|
|
|
context->LineBuf = NULL;
|
|
|
|
|
context->LineDone = 0;
|
|
|
|
|
context->Lines = 0;
|
|
|
|
|
|
|
|
|
|
context->Type = 0;
|
|
|
|
|
|
|
|
|
|
memset(&context->Header, 0, sizeof(struct headerpair));
|
1999-11-24 21:12:24 +00:00
|
|
|
|
memset(&context->compr, 0, sizeof(struct bmp_compression_state));
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
context->pixbuf = NULL;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return (gpointer) context;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* context - returned from image_begin_load
|
|
|
|
|
*
|
|
|
|
|
* free context, unref gdk_pixbuf
|
|
|
|
|
*/
|
2000-02-22 00:29:00 +00:00
|
|
|
|
void gdk_pixbuf__bmp_image_stop_load(gpointer data)
|
1999-11-21 21:28:28 +00:00
|
|
|
|
{
|
|
|
|
|
struct bmp_progressive_state *context =
|
|
|
|
|
(struct bmp_progressive_state *) data;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
g_return_if_fail(context != NULL);
|
|
|
|
|
|
|
|
|
|
if (context->LineBuf != NULL)
|
|
|
|
|
g_free(context->LineBuf);
|
1999-11-24 21:12:24 +00:00
|
|
|
|
context->LineBuf = NULL;
|
1999-12-04 18:17:52 +00:00
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
if (context->HeaderBuf != NULL)
|
|
|
|
|
g_free(context->HeaderBuf);
|
1999-12-04 18:17:52 +00:00
|
|
|
|
context->LineBuf = NULL;
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
if (context->pixbuf)
|
|
|
|
|
gdk_pixbuf_unref(context->pixbuf);
|
|
|
|
|
|
|
|
|
|
g_free(context);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
/*
|
|
|
|
|
The OneLineXX functions are called when 1 line worth of data is present.
|
|
|
|
|
OneLine24 is the 24 bpp-version.
|
|
|
|
|
*/
|
|
|
|
|
static void OneLine32(struct bmp_progressive_state *context)
|
|
|
|
|
{
|
|
|
|
|
gint X;
|
|
|
|
|
guchar *Pixels;
|
|
|
|
|
|
|
|
|
|
X = 0;
|
|
|
|
|
if (context->Header.Negative == 0)
|
2000-04-11 07:03:25 +00:00
|
|
|
|
Pixels = (context->pixbuf->pixels +
|
|
|
|
|
context->pixbuf->rowstride *
|
|
|
|
|
(context->Header.height - context->Lines - 1));
|
1999-12-04 18:17:52 +00:00
|
|
|
|
else
|
2000-04-11 07:03:25 +00:00
|
|
|
|
Pixels = (context->pixbuf->pixels +
|
|
|
|
|
context->pixbuf->rowstride *
|
|
|
|
|
context->Lines);
|
1999-12-04 18:17:52 +00:00
|
|
|
|
while (X < context->Header.width) {
|
|
|
|
|
Pixels[X * 4 + 0] = context->LineBuf[X * 4 + 2];
|
|
|
|
|
Pixels[X * 4 + 1] = context->LineBuf[X * 4 + 1];
|
|
|
|
|
Pixels[X * 4 + 2] = context->LineBuf[X * 4 + 0];
|
|
|
|
|
Pixels[X * 4 + 3] = context->LineBuf[X * 4 + 3];
|
|
|
|
|
X++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
static void OneLine24(struct bmp_progressive_state *context)
|
|
|
|
|
{
|
|
|
|
|
gint X;
|
|
|
|
|
guchar *Pixels;
|
|
|
|
|
|
|
|
|
|
X = 0;
|
1999-11-24 21:12:24 +00:00
|
|
|
|
if (context->Header.Negative == 0)
|
2000-04-11 07:03:25 +00:00
|
|
|
|
Pixels = (context->pixbuf->pixels +
|
|
|
|
|
context->pixbuf->rowstride *
|
|
|
|
|
(context->Header.height - context->Lines - 1));
|
1999-11-24 21:12:24 +00:00
|
|
|
|
else
|
2000-04-11 07:03:25 +00:00
|
|
|
|
Pixels = (context->pixbuf->pixels +
|
|
|
|
|
context->pixbuf->rowstride *
|
|
|
|
|
context->Lines);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
while (X < context->Header.width) {
|
|
|
|
|
Pixels[X * 3 + 0] = context->LineBuf[X * 3 + 2];
|
|
|
|
|
Pixels[X * 3 + 1] = context->LineBuf[X * 3 + 1];
|
|
|
|
|
Pixels[X * 3 + 2] = context->LineBuf[X * 3 + 0];
|
|
|
|
|
X++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void OneLine8(struct bmp_progressive_state *context)
|
|
|
|
|
{
|
|
|
|
|
gint X;
|
|
|
|
|
guchar *Pixels;
|
|
|
|
|
|
|
|
|
|
X = 0;
|
1999-11-24 21:12:24 +00:00
|
|
|
|
if (context->Header.Negative == 0)
|
2000-04-11 07:03:25 +00:00
|
|
|
|
Pixels = (context->pixbuf->pixels +
|
|
|
|
|
context->pixbuf->rowstride *
|
|
|
|
|
(context->Header.height - context->Lines - 1));
|
1999-11-24 21:12:24 +00:00
|
|
|
|
else
|
2000-04-11 07:03:25 +00:00
|
|
|
|
Pixels = (context->pixbuf->pixels +
|
|
|
|
|
context->pixbuf->rowstride *
|
|
|
|
|
context->Lines);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
while (X < context->Header.width) {
|
|
|
|
|
Pixels[X * 3 + 0] =
|
1999-11-24 21:12:24 +00:00
|
|
|
|
context->HeaderBuf[4 * context->LineBuf[X] + 56];
|
1999-11-21 21:28:28 +00:00
|
|
|
|
Pixels[X * 3 + 1] =
|
1999-11-24 21:12:24 +00:00
|
|
|
|
context->HeaderBuf[4 * context->LineBuf[X] + 55];
|
1999-11-21 21:28:28 +00:00
|
|
|
|
Pixels[X * 3 + 2] =
|
1999-11-24 21:12:24 +00:00
|
|
|
|
context->HeaderBuf[4 * context->LineBuf[X] + 54];
|
1999-11-21 21:28:28 +00:00
|
|
|
|
X++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
static void OneLine4(struct bmp_progressive_state *context)
|
|
|
|
|
{
|
|
|
|
|
gint X;
|
|
|
|
|
guchar *Pixels;
|
|
|
|
|
|
|
|
|
|
X = 0;
|
|
|
|
|
if (context->Header.Negative == 0)
|
2000-04-11 07:03:25 +00:00
|
|
|
|
Pixels = (context->pixbuf->pixels +
|
|
|
|
|
context->pixbuf->rowstride *
|
|
|
|
|
(context->Header.height - context->Lines - 1));
|
1999-12-04 18:17:52 +00:00
|
|
|
|
else
|
2000-04-11 07:03:25 +00:00
|
|
|
|
Pixels = (context->pixbuf->pixels +
|
|
|
|
|
context->pixbuf->rowstride *
|
|
|
|
|
context->Lines);
|
1999-12-04 18:17:52 +00:00
|
|
|
|
|
|
|
|
|
while (X < context->Header.width) {
|
|
|
|
|
guchar Pix;
|
|
|
|
|
|
|
|
|
|
Pix = context->LineBuf[X / 2];
|
|
|
|
|
|
|
|
|
|
Pixels[X * 3 + 0] =
|
|
|
|
|
context->HeaderBuf[4 * (Pix >> 4) + 56];
|
|
|
|
|
Pixels[X * 3 + 1] =
|
|
|
|
|
context->HeaderBuf[4 * (Pix >> 4) + 55];
|
|
|
|
|
Pixels[X * 3 + 2] =
|
|
|
|
|
context->HeaderBuf[4 * (Pix >> 4) + 54];
|
|
|
|
|
X++;
|
|
|
|
|
if (X < context->Header.width) {
|
|
|
|
|
/* Handle the other 4 bit pixel only when there is one */
|
|
|
|
|
Pixels[X * 3 + 0] =
|
|
|
|
|
context->HeaderBuf[4 * (Pix & 15) + 56];
|
|
|
|
|
Pixels[X * 3 + 1] =
|
|
|
|
|
context->HeaderBuf[4 * (Pix & 15) + 55];
|
|
|
|
|
Pixels[X * 3 + 2] =
|
|
|
|
|
context->HeaderBuf[4 * (Pix & 15) + 54];
|
|
|
|
|
X++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
static void OneLine1(struct bmp_progressive_state *context)
|
|
|
|
|
{
|
|
|
|
|
gint X;
|
|
|
|
|
guchar *Pixels;
|
|
|
|
|
|
|
|
|
|
X = 0;
|
1999-11-24 21:12:24 +00:00
|
|
|
|
if (context->Header.Negative == 0)
|
2000-04-11 07:03:25 +00:00
|
|
|
|
Pixels = (context->pixbuf->pixels +
|
|
|
|
|
context->pixbuf->rowstride *
|
|
|
|
|
(context->Header.height - context->Lines - 1));
|
1999-11-24 21:12:24 +00:00
|
|
|
|
else
|
2000-04-11 07:03:25 +00:00
|
|
|
|
Pixels = (context->pixbuf->pixels +
|
|
|
|
|
context->pixbuf->rowstride *
|
|
|
|
|
context->Lines);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
while (X < context->Header.width) {
|
1999-12-04 18:17:52 +00:00
|
|
|
|
gint Bit;
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
|
|
|
|
Bit = (context->LineBuf[X / 8]) >> (7 - (X & 7));
|
1999-11-21 21:28:28 +00:00
|
|
|
|
Bit = Bit & 1;
|
2000-03-06 08:53:57 +00:00
|
|
|
|
Pixels[X * 3 + 0] = Bit * 255;
|
|
|
|
|
Pixels[X * 3 + 1] = Bit * 255;
|
|
|
|
|
Pixels[X * 3 + 2] = Bit * 255;
|
1999-11-21 21:28:28 +00:00
|
|
|
|
X++;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static void OneLine(struct bmp_progressive_state *context)
|
|
|
|
|
{
|
1999-11-24 21:12:24 +00:00
|
|
|
|
context->LineDone = 0;
|
|
|
|
|
if (context->Lines >= context->Header.height)
|
|
|
|
|
return;
|
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
if (context->Type == 32)
|
|
|
|
|
OneLine32(context);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
if (context->Type == 24)
|
|
|
|
|
OneLine24(context);
|
|
|
|
|
if (context->Type == 8)
|
|
|
|
|
OneLine8(context);
|
1999-12-04 18:17:52 +00:00
|
|
|
|
if (context->Type == 4)
|
|
|
|
|
OneLine4(context);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
if (context->Type == 1)
|
|
|
|
|
OneLine1(context);
|
|
|
|
|
|
|
|
|
|
context->Lines++;
|
|
|
|
|
|
|
|
|
|
if (context->updated_func != NULL) {
|
|
|
|
|
(*context->updated_func) (context->pixbuf,
|
|
|
|
|
0,
|
|
|
|
|
context->Lines,
|
|
|
|
|
context->Header.width,
|
2000-01-05 23:06:13 +00:00
|
|
|
|
context->Header.height,
|
|
|
|
|
context->user_data);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
/* DoCompressedByte handles 1 byte of incomming compressed data */
|
|
|
|
|
void DoCompressedByte(struct bmp_progressive_state *context, guchar ** buf,
|
|
|
|
|
gint * size)
|
|
|
|
|
{
|
|
|
|
|
gint BytesToCopy;
|
|
|
|
|
switch (context->compr.phase) {
|
|
|
|
|
case 0: /* Neutral state */
|
2000-03-06 08:53:57 +00:00
|
|
|
|
if ((*buf)[0] != 0) { /* run count */
|
1999-12-04 18:17:52 +00:00
|
|
|
|
context->compr.phase = 1;
|
|
|
|
|
context->compr.RunCount = (*buf)[0];
|
2000-03-06 08:53:57 +00:00
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
} else { /* Escape */
|
|
|
|
|
context->compr.phase = 2;
|
|
|
|
|
}
|
|
|
|
|
(*buf)++;
|
|
|
|
|
(*size)--;
|
|
|
|
|
break;
|
|
|
|
|
case 1: /* Run count received.... */
|
|
|
|
|
while (context->compr.RunCount > 0) {
|
|
|
|
|
BytesToCopy =
|
|
|
|
|
context->LineWidth - context->LineDone;
|
|
|
|
|
if (BytesToCopy > context->compr.RunCount)
|
|
|
|
|
BytesToCopy = context->compr.RunCount;
|
|
|
|
|
if (BytesToCopy > 0) {
|
|
|
|
|
memset(context->LineBuf +
|
2000-03-06 08:53:57 +00:00
|
|
|
|
context->LineDone, (*buf)[0],
|
|
|
|
|
BytesToCopy);
|
1999-12-04 18:17:52 +00:00
|
|
|
|
|
|
|
|
|
context->compr.RunCount -= BytesToCopy;
|
|
|
|
|
context->LineDone += BytesToCopy;
|
|
|
|
|
}
|
|
|
|
|
if ((context->LineDone >= context->LineWidth)
|
|
|
|
|
&& (context->LineWidth > 0)) {
|
|
|
|
|
OneLine(context);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
context->compr.phase = 0;
|
|
|
|
|
(*buf)++;
|
|
|
|
|
(*size)--;
|
|
|
|
|
break;
|
|
|
|
|
case 2: /* Escape received */
|
|
|
|
|
if ((*buf)[0] == 0) { /* End of line */
|
|
|
|
|
context->compr.phase = 0;
|
|
|
|
|
if (context->LineDone > 0)
|
|
|
|
|
OneLine(context);
|
|
|
|
|
} else if ((*buf)[0] == 1) { /* End of image */
|
|
|
|
|
OneLine(context);
|
|
|
|
|
context->compr.phase = 6;
|
|
|
|
|
(*size) = 0;
|
|
|
|
|
break;
|
|
|
|
|
} else if ((*buf)[0] == 2) { /* Cursor displacement */
|
|
|
|
|
context->compr.phase = 4;
|
|
|
|
|
} else {
|
|
|
|
|
context->compr.phase = 3;
|
|
|
|
|
context->compr.RunCount = (*buf)[0];
|
2000-03-06 08:53:57 +00:00
|
|
|
|
if (context->compr.RunCount & 1)
|
|
|
|
|
context->compr.phase = 7;
|
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
}
|
|
|
|
|
(*buf)++;
|
|
|
|
|
(*size)--;
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
while ((context->compr.RunCount > 0)
|
2000-03-06 08:53:57 +00:00
|
|
|
|
&& (*size > 0)) {
|
1999-12-04 18:17:52 +00:00
|
|
|
|
BytesToCopy =
|
|
|
|
|
context->LineWidth - context->LineDone;
|
|
|
|
|
if (BytesToCopy > context->compr.RunCount)
|
|
|
|
|
BytesToCopy = context->compr.RunCount;
|
|
|
|
|
if (BytesToCopy > *size)
|
|
|
|
|
BytesToCopy = *size;
|
|
|
|
|
|
|
|
|
|
if (BytesToCopy > 0) {
|
|
|
|
|
memcpy(context->LineBuf +
|
2000-03-06 08:53:57 +00:00
|
|
|
|
context->LineDone, *buf,
|
|
|
|
|
BytesToCopy);
|
1999-12-04 18:17:52 +00:00
|
|
|
|
|
|
|
|
|
context->compr.RunCount -= BytesToCopy;
|
|
|
|
|
(*buf) += BytesToCopy;
|
|
|
|
|
(*size) -= BytesToCopy;
|
|
|
|
|
context->LineDone += BytesToCopy;
|
|
|
|
|
}
|
|
|
|
|
if ((context->LineDone >= context->LineWidth)
|
|
|
|
|
&& (context->LineWidth > 0))
|
|
|
|
|
OneLine(context);
|
|
|
|
|
}
|
|
|
|
|
if (context->compr.RunCount <= 0)
|
|
|
|
|
context->compr.phase = 0;
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
context->compr.phase = 5;
|
|
|
|
|
context->compr.XDelta = (*buf)[0];
|
|
|
|
|
(*buf)++;
|
|
|
|
|
(*size)--;
|
|
|
|
|
break;
|
|
|
|
|
case 5:
|
|
|
|
|
context->compr.phase = 0;
|
|
|
|
|
context->compr.YDelta = (*buf)[0];
|
|
|
|
|
g_assert(0); /* No implementatio of this yet */
|
|
|
|
|
/* If this happens, please email me (arjan@fenrus.demon.nl)
|
|
|
|
|
the image concerned. */
|
|
|
|
|
(*buf)++;
|
|
|
|
|
(*size)--;
|
|
|
|
|
break;
|
|
|
|
|
case 6:
|
|
|
|
|
(*size) = 0;
|
2000-03-06 08:53:57 +00:00
|
|
|
|
break;
|
|
|
|
|
case 7: /* Odd raw run */
|
|
|
|
|
while ((context->compr.RunCount > 0) && (*size > 0)) {
|
|
|
|
|
BytesToCopy =
|
|
|
|
|
context->LineWidth - context->LineDone;
|
|
|
|
|
if (BytesToCopy > context->compr.RunCount)
|
|
|
|
|
BytesToCopy = context->compr.RunCount;
|
|
|
|
|
if (BytesToCopy > *size)
|
|
|
|
|
BytesToCopy = *size;
|
|
|
|
|
|
|
|
|
|
if (BytesToCopy > 0) {
|
|
|
|
|
memcpy(context->LineBuf +
|
|
|
|
|
context->LineDone, *buf,
|
|
|
|
|
BytesToCopy);
|
|
|
|
|
|
|
|
|
|
context->compr.RunCount -= BytesToCopy;
|
|
|
|
|
(*buf) += BytesToCopy;
|
|
|
|
|
(*size) -= BytesToCopy;
|
|
|
|
|
context->LineDone += BytesToCopy;
|
|
|
|
|
}
|
|
|
|
|
if ((context->LineDone >= context->LineWidth)
|
|
|
|
|
&& (context->LineWidth > 0))
|
|
|
|
|
OneLine(context);
|
|
|
|
|
}
|
|
|
|
|
if (context->compr.RunCount <= 0)
|
|
|
|
|
context->compr.phase = 8;
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
case 8: /* Eat dummy byte; */
|
|
|
|
|
(*buf)++;
|
|
|
|
|
(*size)--;
|
|
|
|
|
context->compr.phase = 0;
|
|
|
|
|
break;
|
1999-12-04 18:17:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
/*
|
|
|
|
|
* context - from image_begin_load
|
|
|
|
|
* buf - new image data
|
|
|
|
|
* size - length of new image data
|
|
|
|
|
*
|
|
|
|
|
* append image data onto inrecrementally built output image
|
|
|
|
|
*/
|
2000-03-06 08:53:57 +00:00
|
|
|
|
gboolean gdk_pixbuf__bmp_image_load_increment(gpointer data, guchar * buf,
|
|
|
|
|
guint size)
|
1999-11-21 21:28:28 +00:00
|
|
|
|
{
|
|
|
|
|
struct bmp_progressive_state *context =
|
|
|
|
|
(struct bmp_progressive_state *) data;
|
|
|
|
|
|
|
|
|
|
gint BytesToCopy;
|
|
|
|
|
|
|
|
|
|
while (size > 0) {
|
1999-11-24 21:12:24 +00:00
|
|
|
|
g_assert(context->LineDone >= 0);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
if (context->HeaderDone < context->HeaderSize) { /* We still
|
|
|
|
|
have headerbytes to do */
|
|
|
|
|
BytesToCopy =
|
|
|
|
|
context->HeaderSize - context->HeaderDone;
|
|
|
|
|
if (BytesToCopy > size)
|
|
|
|
|
BytesToCopy = size;
|
|
|
|
|
|
1999-12-04 18:17:52 +00:00
|
|
|
|
memmove(context->HeaderBuf + context->HeaderDone,
|
2000-03-06 08:53:57 +00:00
|
|
|
|
buf, BytesToCopy);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
size -= BytesToCopy;
|
|
|
|
|
buf += BytesToCopy;
|
|
|
|
|
context->HeaderDone += BytesToCopy;
|
|
|
|
|
|
1999-11-24 21:12:24 +00:00
|
|
|
|
} else if (context->Compressed) {
|
1999-12-04 18:17:52 +00:00
|
|
|
|
/* Compression is done 1 byte at a time for now */
|
|
|
|
|
DoCompressedByte(context, &buf, &size);
|
1999-11-24 21:12:24 +00:00
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
} else {
|
1999-12-04 18:17:52 +00:00
|
|
|
|
/* Uncompressed pixeldata */
|
1999-11-21 21:28:28 +00:00
|
|
|
|
BytesToCopy =
|
|
|
|
|
context->LineWidth - context->LineDone;
|
|
|
|
|
if (BytesToCopy > size)
|
|
|
|
|
BytesToCopy = size;
|
|
|
|
|
|
|
|
|
|
if (BytesToCopy > 0) {
|
1999-12-04 18:17:52 +00:00
|
|
|
|
memmove(context->LineBuf +
|
2000-03-06 08:53:57 +00:00
|
|
|
|
context->LineDone, buf,
|
|
|
|
|
BytesToCopy);
|
1999-11-21 21:28:28 +00:00
|
|
|
|
|
|
|
|
|
size -= BytesToCopy;
|
|
|
|
|
buf += BytesToCopy;
|
|
|
|
|
context->LineDone += BytesToCopy;
|
|
|
|
|
}
|
2000-03-06 08:53:57 +00:00
|
|
|
|
if ((context->LineDone >= context->LineWidth)
|
|
|
|
|
&& (context->LineWidth > 0))
|
1999-11-21 21:28:28 +00:00
|
|
|
|
OneLine(context);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-24 21:12:24 +00:00
|
|
|
|
if (context->HeaderDone >= 14 + 40)
|
|
|
|
|
DecodeHeader(context->HeaderBuf,
|
|
|
|
|
context->HeaderBuf + 14, context);
|
1999-07-08 16:04:16 +00:00
|
|
|
|
|
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
}
|
1999-07-08 16:04:16 +00:00
|
|
|
|
|
1999-11-21 21:28:28 +00:00
|
|
|
|
return TRUE;
|
1999-07-08 16:04:16 +00:00
|
|
|
|
}
|