00001 /***************************************************************************** 00002 * 00003 * $RCSfile: imginfo_8h-source.html,v $ 00004 * 00005 * Image File Information Functions 00006 * 00007 * This program is Copyright (C) 03/2003 Matthias Prinke 00008 * <matthias.prinke@surfeu.de> and covered by GNU's GPL. 00009 * In particular, this program is free software and comes WITHOUT 00010 * ANY WARRANTY. 00011 * 00012 * $Author: mp $ 00013 * 00014 * $Date: 2007-10-08 20:40:33 $ 00015 * 00016 * $Revision: 1.1.2.1 $ 00017 * 00018 * $Log: imginfo_8h-source.html,v $ 00018 * Revision 1.1.2.1 2007-10-08 20:40:33 mp 00018 * updated for gps4palm V0.9.5 beta 00018 * 00019 * Revision 1.1 2005-05-14 12:30:55 mp 00020 * initial version 00021 * 00022 * 00023 ****************************************************************************/ 00024 00025 #ifndef IMGINFO_H 00026 #define IMGINFO_H 00027 00028 #define IMGTYPE_GIF 0 00029 #define IMGTYPE_PNG 1 00030 #define IMGTYPE_JPEG 2 00031 #define IMGTYPE_UNKNOWN 0xFF 00032 00033 Boolean imginfo(FileDescrType fd, UInt8 *type, UInt16 *width, UInt16 *height); 00034 00035 #endif