mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 03:10:09 +00:00
74268afdeb
1999-10-18 Federico Mena Quintero <federico@redhat.com> * src/*: Reindented to use the GNOME Indentation.
48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
/*
|
|
* io-bmp.c: GdkPixbuf I/O for BMP files.
|
|
*
|
|
* Copyright (C) 1999 Mark Crichton
|
|
* Author: Mark Crichton <crichton@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, Cambridge, MA 02139, USA.
|
|
*
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <stdio.h>
|
|
#include <glib.h>
|
|
#include "gdk-pixbuf.h"
|
|
#include "gdk-pixbuf-io.h"
|
|
#include "io-bmp.h"
|
|
|
|
/* Loosely based off the BMP loader from The GIMP, hence it's complexity */
|
|
|
|
/* Shared library entry point */
|
|
GdkPixbuf *image_load(FILE * f)
|
|
{
|
|
art_u8 *pixels;
|
|
ArtPixBuf *art_pixbuf;
|
|
|
|
/* Ok, now stuff the GdkPixbuf with goodies */
|
|
|
|
if (is_trans)
|
|
art_pixbuf = art_pixbuf_new_rgba (pixels, w, h, (w * 4));
|
|
else
|
|
art_pixbuf = art_pixbuf_new_rgb (pixels, w, h, (w * 3));
|
|
|
|
/* Ok, I'm anal...shoot me */
|
|
return gdk_pixbuf_new (art_pixbuf, NULL);
|
|
}
|