home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / gif2pngx.zip / README < prev    next >
Text File  |  1995-05-29  |  5KB  |  108 lines

  1.  
  2.   gif2png (version 0.5 beta)
  3.  
  4.   Copyright (C) 1995 Alexander Lehmann
  5.  
  6.   This software is provided 'as-is', without any express or implied
  7.   warranty.  In no event will the authors be held liable for any damages
  8.   arising from the use of this software.
  9.  
  10.   Permission is granted to anyone to use this software for any purpose,
  11.   including commercial applications (see below), and to alter it and
  12.   redistribute it freely, subject to the following restrictions:
  13.  
  14.   1. The origin of this software must not be misrepresented; you must not
  15.      claim that you wrote the original software. If you use this software
  16.      in a product, an acknowledgment in the product documentation would be
  17.      appreciated but is not required.
  18.   2. Altered source versions must be plainly marked as such, and must not be
  19.      misrepresented as being the original software.
  20.   3. This notice may not be removed or altered from any source distribution.
  21.   4. Binary only distributions of the software must include the file README
  22.      with the copyright statement. You are welcome to add a copyright
  23.      statement for your modifications and a contact address, though.
  24.  
  25.  
  26.   Note that this program uses the LZW decompression algorithm, which due to
  27.   patent claims probably requires you to license if you use the algorithm
  28.   in a commercial program or distribute this program on a for-profit basis.
  29.   (See http://www.unisys.com)
  30.  
  31.  
  32. Part of this program (gifread.c) carries the following copyright:
  33.  
  34. /* +-------------------------------------------------------------------+ */
  35. /* | Copyright 1990 - 1994, David Koblas. (koblas@netcom.com)          | */
  36. /* |   Permission to use, copy, modify, and distribute this software   | */
  37. /* |   and its documentation for any purpose and without fee is hereby | */
  38. /* |   granted, provided that the above copyright notice appear in all | */
  39. /* |   copies and that both that copyright notice and this permission  | */
  40. /* |   notice appear in supporting documentation.  This software is    | */
  41. /* |   provided "as is" without express or implied warranty.           | */
  42. /* +-------------------------------------------------------------------+ */
  43.  
  44. (This file was taken from the Moasic 2.5 distribution, so another copyright
  45. may apply, but I haven't received any reply from NCSA yet)
  46.  
  47. Part of the program (437_l1.c) was generated by trans100 written by Kosta
  48. Kostis <kosta@live.robin.de>.
  49. This package (great source for character conversion tables) is available as
  50. ftp://ftp.uni-erlangen.de:pub/doc/ISO/charsets/transXXX.tar.gz, where XXX is
  51. replaced by a version number.
  52.  
  53.  
  54. The png sample library is Copyright (c) 1995 Guy Eric Schalnat, Group 42, Inc.
  55. and is available from ftp://ftp.uu.net/graphics/png/code/pnglib*.zip
  56.  
  57. The zlib compression library is Copyright (C) 1995 Jean-loup Gailly and Mark
  58. Adler and is available from ftp://ftp.uu.net/graphics/png/code/zlib-*.tar.gz
  59.  
  60.  
  61. The PNG specification is Copyright 1995, Thomas Boutell and is available
  62. from ftp://ftp.uu.net/graphics/png/documents. Obviously without the PNG effort
  63. this program wouldn't have been possible (or even conceivable).
  64.  
  65.  
  66. The Graphics Interchange Format(c) is the Copyright property of
  67. CompuServe Incorporated. GIF(sm) is a Service Mark property of
  68. CompuServe Incorporated.
  69.  
  70. The GIF spec is available from any SimTel mirror as msdos/gif/gif89a.zip,
  71. e.g. on oak.oakland.edu.
  72.  
  73.  
  74. OK, now that we got this ground covered, we switch to more `normal' tone:
  75.  
  76. If you are reading this, you have received gif2png either in source or
  77. precompiled binary form. If you want to compile the program yourself, see
  78. the file COMPILING.
  79.  
  80. Note that this program is considered a beta version, it has performed
  81. satisfactory for me and is fairly complete, though there may be a few bits
  82. missing. However, with the diversity of computer systems out there, you
  83. may run into problems both when compiling and running the program.
  84. If you are converting your GIF collection, you should take care to verify
  85. that the conversion was successful with any PNG reading program, e.g. QPV.
  86. The delete option is currently disabled.
  87.  
  88. The usage of the program is as follows:
  89.  
  90. gif2png [ -dhi ] [file[.gif]] ...
  91.        -d delete source GIF files after successful conversion
  92.        -i create interlaced PNG files
  93.        -h create histogram chunks for color files
  94.  
  95.        if no source files are listed, stdin is converted to noname.png
  96.        (may not work on non-unix machines)
  97.  
  98.  
  99. The program will try to preserve the information contained in a GIF file as
  100. close as possible, including comments, application data. Plain text extensions
  101. are currently not supported, however this will probably be fixed in a future
  102. version of the program. If a multi-image GIF is encountered, multiple PNG
  103. files are created, names file.png, file.p01, file.p02 etc.
  104.  
  105.  
  106. Alexander Lehmann <alex@hal.rhein-main.de>
  107.  
  108.