/* * io-bmp.c: GdkPixBuf I/O for BMP files. * * Copyright (C) 1999 Mark Crichton * Author: Mark Crichton * * 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 #include #include #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); }