rdgif.c
来自「IJG组织的JPEG压缩程序的源代码,这里的JPEG压缩程序仅限于灰度图像的压缩」· C语言 代码 · 共 39 行
C
39 行
/* * rdgif.c * * Copyright (C) 1991-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README file. * * This file contains routines to read input images in GIF format. * ***************************************************************************** * NOTE: to avoid entanglements with Unisys' patent on LZW compression, * * the ability to read GIF files has been removed from the IJG distribution. * * Sorry about that. * ***************************************************************************** * * We are required to state that * "The Graphics Interchange Format(c) is the Copyright property of * CompuServe Incorporated. GIF(sm) is a Service Mark property of * CompuServe Incorporated." */#include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */#ifdef GIF_SUPPORTED/* * The module selection routine for GIF format input. */GLOBAL(cjpeg_source_ptr)jinit_read_gif (j_compress_ptr cinfo){ fprintf(stderr, "GIF input is unsupported for legal reasons. Sorry.\n"); exit(EXIT_FAILURE); return NULL; /* keep compiler happy */}#endif /* GIF_SUPPORTED */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?