Sha256: d2126569228b4ef208b8d5968852f6520e5a633f4a05d6c5f03b79aaf931a319

Contents?: true

Size: 1.28 KB

Versions: 11

Compression:

Stored size: 1.28 KB

Contents

/*
 * 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 */

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rfreeimage-0.2.1 vendor/FreeImage/Source/LibJPEG/rdgif.c
rfreeimage-0.2.4 vendor/FreeImage/Source/LibJPEG/rdgif.c
rfreeimage-0.2.0 vendor/FreeImage/Source/LibJPEG/rdgif.c
rfreeimage-0.1.9 vendor/FreeImage/Source/LibJPEG/rdgif.c
rfreeimage-0.1.8 vendor/FreeImage/Source/LibJPEG/rdgif.c
rfreeimage-0.1.7 vendor/FreeImage/Source/LibJPEG/rdgif.c
rfreeimage-0.1.6 vendor/FreeImage/Source/LibJPEG/rdgif.c
rfreeimage-0.1.5 vendor/FreeImage/Source/LibJPEG/rdgif.c
rfreeimage-0.1.3 vendor/FreeImage/Source/LibJPEG/rdgif.c
rfreeimage-0.1.1 vendor/FreeImage/Source/LibJPEG/rdgif.c
rfreeimage-0.1.0 vendor/FreeImage/Source/LibJPEG/rdgif.c