- Visual C++源码
- Visual Basic源码
- C++ Builder源码
- Java源码
- Delphi源码
- C/C++源码
- PHP源码
- Perl源码
- Python源码
- Asm源码
- Pascal源码
- Borland C++源码
- Others源码
- SQL源码
- VBScript源码
- JavaScript源码
- ASP/ASPX源码
- C#源码
- Flash/ActionScript源码
- matlab源码
- PowerBuilder源码
- LabView源码
- Flex源码
- MathCAD源码
- VBA源码
- IDL源码
- Lisp/Scheme源码
- VHDL源码
- Objective-C源码
- Fortran源码
- tcl/tk源码
- QT源码
rdgif.c
资源名称:jpeg-6b.zip [点击查看]
上传用户:mkymky1985
上传日期:2021-03-05
资源大小:740k
文件大小:1k
源码类别:
压缩解压
开发平台:
Unix_Linux
- /*
- * 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 */