⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 imagetypes.h

📁 speech signal process tools
💻 H
字号:
/* imagetypes.h: * * supported image types and the imagetypes array declaration.  when you * add a new image type, only the makefile and this header need to be * changed. * * jim frost 10.15.89 *//* @(#)imagetypes.h	1.1  10/13/90 */Image *facesLoad();Image *pbmLoad();Image *sunRasterLoad();Image *gifLoad();Image *xbitmapLoad();Image *xpixmapLoad();Image *g3Load();int facesIdent();int pbmIdent();int sunRasterIdent();int gifIdent();int xbitmapIdent();int xpixmapIdent();int g3Ident();/* some of these are order-dependent */struct {  int    (*identifier)(); /* print out image info if this kind of image */  Image *(*loader)();     /* load image if this kind of image */  char  *name;            /* name of this image format */} ImageTypes[] = {  sunRasterIdent, sunRasterLoad, "Sun Rasterfile",  pbmIdent,       pbmLoad,       "Portable Bit Map (PBM)",  facesIdent,     facesLoad,     "Faces Project",  gifIdent,       gifLoad,       "GIF Image",  xpixmapIdent,   xpixmapLoad,   "X Pixmap",  xbitmapIdent,   xbitmapLoad,   "X Bitmap",  g3Ident,        g3Load,        "G3 FAX Image",  NULL,           NULL,          NULL};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -