mirror of https://github.com/GNOME/gimp.git
54 lines
2.0 KiB
Plaintext
54 lines
2.0 KiB
Plaintext
This package was debianized by Ben Gertzfield che@imsa.edu on
|
|
Tue, 22 Jul 1997 20:53:20 -0500
|
|
|
|
It was downloaded from http://www.xcf.berkeley.edu/~gimp/
|
|
|
|
This package contains proprietary, patented compression algorithms.
|
|
|
|
Use at your own legal risk.
|
|
|
|
/* ppmtogif.c - read a portable pixmap and produce a GIF file
|
|
**
|
|
** Based on GIFENCOD by David Rowley <mgardi@watdscu.waterloo.edu>.A
|
|
** Lempel-Zim compression based on "compress".
|
|
**
|
|
** Modified by Marcel Wijkstra <wijkstra@fwi.uva.nl>
|
|
**
|
|
**
|
|
** Copyright (C) 1989 by Jef Poskanzer.
|
|
**
|
|
** Permission to use, copy, modify, and distribute this software and its
|
|
** documentation for any purpose and without fee is hereby granted, provided
|
|
** that the above copyright notice appear in all copies and that both that
|
|
** copyright notice and this permission notice appear in supporting
|
|
** documentation. This software is provided "as is" without express or
|
|
** implied warranty.
|
|
**
|
|
** The Graphics Interchange Format(c) is the Copyright property of
|
|
** CompuServe Incorporated. GIF(sm) is a Service Mark property of
|
|
** CompuServe Incorporated.
|
|
*/
|
|
|
|
/*
|
|
** tifftopnm.c - converts a Tagged Image File to a portable anymap
|
|
**
|
|
** Derived by Jef Poskanzer from tif2ras.c, which is:
|
|
**
|
|
** Copyright (c) 1990 by Sun Microsystems, Inc.
|
|
**
|
|
** Author: Patrick J. Naughton
|
|
** naughton@wind.sun.com
|
|
**
|
|
** Permission to use, copy, modify, and distribute this software and its
|
|
** documentation for any purpose and without fee is hereby granted,
|
|
** provided that the above copyright notice appear in all copies and that
|
|
** both that copyright notice and this permission notice appear in
|
|
** supporting documentation.
|
|
**
|
|
** This file is provided AS IS with no warranties of any kind. The author
|
|
** shall have no liability with respect to the infringement of copyrights,
|
|
** trade secrets or any patents by this file or any part thereof. In no
|
|
** event will the author be liable for any lost revenue or profits or
|
|
** other special, indirect and consequential damages.
|
|
*/
|