imaging/imagingplugins/codecs/GifCodec/README006.txt
changeset 0 5752a19fdefe
equal deleted inserted replaced
-1:000000000000 0:5752a19fdefe
       
     1 // Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 The Independent JPEG Group's JPEG software
       
    17 ==========================================
       
    18 
       
    19 README for release 6b of 27-Mar-1998
       
    20 ====================================
       
    21 
       
    22 This distribution contains the sixth public release of the Independent JPEG
       
    23 Group's free JPEG software.  You are welcome to redistribute this software and
       
    24 to use it for any purpose, subject to the conditions under LEGAL ISSUES, below.
       
    25 
       
    26 Serious users of this software (particularly those incorporating it into
       
    27 larger programs) should contact IJG at jpeg-info@uunet.uu.net to be added to
       
    28 our electronic mailing list.  Mailing list members are notified of updates
       
    29 and have a chance to participate in technical discussions, etc.
       
    30 
       
    31 This software is the work of Tom Lane, Philip Gladstone, Jim Boucher,
       
    32 Lee Crocker, Julian Minguillon, Luis Ortiz, George Phillips, Davide Rossi,
       
    33 Guido Vollbeding, Ge' Weijers, and other members of the Independent JPEG
       
    34 Group.
       
    35 
       
    36 IJG is not affiliated with the official ISO JPEG standards committee.
       
    37 
       
    38 
       
    39 DOCUMENTATION ROADMAP
       
    40 =====================
       
    41 
       
    42 This file contains the following sections:
       
    43 
       
    44 OVERVIEW            General description of JPEG and the IJG software.
       
    45 LEGAL ISSUES        Copyright, lack of warranty, terms of distribution.
       
    46 REFERENCES          Where to learn more about JPEG.
       
    47 ARCHIVE LOCATIONS   Where to find newer versions of this software.
       
    48 RELATED SOFTWARE    Other stuff you should get.
       
    49 FILE FORMAT WARS    Software *not* to get.
       
    50 TO DO               Plans for future IJG releases.
       
    51 
       
    52 Other documentation files in the distribution are:
       
    53 
       
    54 User documentation:
       
    55   install.doc       How to configure and install the IJG software.
       
    56   usage.doc         Usage instructions for cjpeg, djpeg, jpegtran,
       
    57                     rdjpgcom, and wrjpgcom.
       
    58   *.1               Unix-style man pages for programs (same info as usage.doc).
       
    59   wizard.doc        Advanced usage instructions for JPEG wizards only.
       
    60   change.log        Version-to-version change highlights.
       
    61 Programmer and internal documentation:
       
    62   libjpeg.doc       How to use the JPEG library in your own programs.
       
    63   example.c         Sample code for calling the JPEG library.
       
    64   structure.doc     Overview of the JPEG library's internal structure.
       
    65   filelist.doc      Road map of IJG files.
       
    66   coderules.doc     Coding style rules --- please read if you contribute code.
       
    67 
       
    68 Please read at least the files install.doc and usage.doc.  Useful information
       
    69 can also be found in the JPEG FAQ (Frequently Asked Questions) article.  See
       
    70 ARCHIVE LOCATIONS below to find out where to obtain the FAQ article.
       
    71 
       
    72 If you want to understand how the JPEG code works, we suggest reading one or
       
    73 more of the REFERENCES, then looking at the documentation files (in roughly
       
    74 the order listed) before diving into the code.
       
    75 
       
    76 
       
    77 OVERVIEW
       
    78 ========
       
    79 
       
    80 This package contains C software to implement JPEG image compression and
       
    81 decompression.  JPEG (pronounced "jay-peg") is a standardized compression
       
    82 method for full-color and gray-scale images.  JPEG is intended for compressing
       
    83 "real-world" scenes; line drawings, cartoons and other non-realistic images
       
    84 are not its strong suit.  JPEG is lossy, meaning that the output image is not
       
    85 exactly identical to the input image.  Hence you must not use JPEG if you
       
    86 have to have identical output bits.  However, on typical photographic images,
       
    87 very good compression levels can be obtained with no visible change, and
       
    88 remarkably high compression levels are possible if you can tolerate a
       
    89 low-quality image.  For more details, see the references, or just experiment
       
    90 with various compression settings.
       
    91 
       
    92 This software implements JPEG baseline, extended-sequential, and progressive
       
    93 compression processes.  Provision is made for supporting all variants of these
       
    94 processes, although some uncommon parameter settings aren't implemented yet.
       
    95 For legal reasons, we are not distributing code for the arithmetic-coding
       
    96 variants of JPEG; see LEGAL ISSUES.  We have made no provision for supporting
       
    97 the hierarchical or lossless processes defined in the standard.
       
    98 
       
    99 We provide a set of library routines for reading and writing JPEG image files,
       
   100 plus two sample applications "cjpeg" and "djpeg", which use the library to
       
   101 perform conversion between JPEG and some other popular image file formats.
       
   102 The library is intended to be reused in other applications.
       
   103 
       
   104 In order to support file conversion and viewing software, we have included
       
   105 considerable functionality beyond the bare JPEG coding/decoding capability;
       
   106 for example, the color quantization modules are not strictly part of JPEG
       
   107 decoding, but they are essential for output to colormapped file formats or
       
   108 colormapped displays.  These extra functions can be compiled out of the
       
   109 library if not required for a particular application.  We have also included
       
   110 "jpegtran", a utility for lossless transcoding between different JPEG
       
   111 processes, and "rdjpgcom" and "wrjpgcom", two simple applications for
       
   112 inserting and extracting textual comments in JFIF files.
       
   113 
       
   114 The emphasis in designing this software has been on achieving portability and
       
   115 flexibility, while also making it fast enough to be useful.  In particular,
       
   116 the software is not intended to be read as a tutorial on JPEG.  (See the
       
   117 REFERENCES section for introductory material.)  Rather, it is intended to
       
   118 be reliable, portable, industrial-strength code.  We do not claim to have
       
   119 achieved that goal in every aspect of the software, but we strive for it.
       
   120 
       
   121 We welcome the use of this software as a component of commercial products.
       
   122 No royalty is required, but we do ask for an acknowledgement in product
       
   123 documentation, as described under LEGAL ISSUES.
       
   124 
       
   125 
       
   126 LEGAL ISSUES
       
   127 ============
       
   128 
       
   129 In plain English:
       
   130 
       
   131 1. We don't promise that this software works.  (But if you find any bugs,
       
   132    please let us know!)
       
   133 2. You can use this software for whatever you want.  You don't have to pay us.
       
   134 3. You may not pretend that you wrote this software.  If you use it in a
       
   135    program, you must acknowledge somewhere in your documentation that
       
   136    you've used the IJG code.
       
   137 
       
   138 In legalese:
       
   139 
       
   140 The authors make NO WARRANTY or representation, either express or implied,
       
   141 with respect to this software, its quality, accuracy, merchantability, or
       
   142 fitness for a particular purpose.  This software is provided "AS IS", and you,
       
   143 its user, assume the entire risk as to its quality and accuracy.
       
   144 
       
   145 This software is copyright (C) 1991-1998, Thomas G. Lane.
       
   146 All Rights Reserved except as specified below.
       
   147 
       
   148 Permission is hereby granted to use, copy, modify, and distribute this
       
   149 software (or portions thereof) for any purpose, without fee, subject to these
       
   150 conditions:
       
   151 (1) If any part of the source code for this software is distributed, then this
       
   152 README file must be included, with this copyright and no-warranty notice
       
   153 unaltered; and any additions, deletions, or changes to the original files
       
   154 must be clearly indicated in accompanying documentation.
       
   155 (2) If only executable code is distributed, then the accompanying
       
   156 documentation must state that "this software is based in part on the work of
       
   157 the Independent JPEG Group".
       
   158 (3) Permission for use of this software is granted only if the user accepts
       
   159 full responsibility for any undesirable consequences; the authors accept
       
   160 NO LIABILITY for damages of any kind.
       
   161 
       
   162 These conditions apply to any software derived from or based on the IJG code,
       
   163 not just to the unmodified library.  If you use our work, you ought to
       
   164 acknowledge us.
       
   165 
       
   166 Permission is NOT granted for the use of any IJG author's name or company name
       
   167 in advertising or publicity relating to this software or products derived from
       
   168 it.  This software may be referred to only as "the Independent JPEG Group's
       
   169 software".
       
   170 
       
   171 We specifically permit and encourage the use of this software as the basis of
       
   172 commercial products, provided that all warranty or liability claims are
       
   173 assumed by the product vendor.
       
   174 
       
   175 
       
   176 ansi2knr.c is included in this distribution by permission of L. Peter Deutsch,
       
   177 sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA.
       
   178 ansi2knr.c is NOT covered by the above copyright and conditions, but instead
       
   179 by the usual distribution terms of the Free Software Foundation; principally,
       
   180 that you must include source code if you redistribute it.  (See the file
       
   181 ansi2knr.c for full details.)  However, since ansi2knr.c is not needed as part
       
   182 of any program generated from the IJG code, this does not limit you more than
       
   183 the foregoing paragraphs do.
       
   184 
       
   185 The Unix configuration script "configure" was produced with GNU Autoconf.
       
   186 It is copyright by the Free Software Foundation but is freely distributable.
       
   187 The same holds for its supporting scripts (config.guess, config.sub,
       
   188 ltconfig, ltmain.sh).  Another support script, install-sh, is copyright
       
   189 by M.I.T. but is also freely distributable.
       
   190 
       
   191 It appears that the arithmetic coding option of the JPEG spec is covered by
       
   192 patents owned by IBM, AT&T, and Mitsubishi.  Hence arithmetic coding cannot
       
   193 legally be used without obtaining one or more licenses.  For this reason,
       
   194 support for arithmetic coding has been removed from the free JPEG software.
       
   195 (Since arithmetic coding provides only a marginal gain over the unpatented
       
   196 Huffman mode, it is unlikely that very many implementations will support it.)
       
   197 So far as we are aware, there are no patent restrictions on the remaining
       
   198 code.
       
   199 
       
   200 The IJG distribution formerly included code to read and write GIF files.
       
   201 To avoid entanglement with the Unisys LZW patent, GIF reading support has
       
   202 been removed altogether, and the GIF writer has been simplified to produce
       
   203 "uncompressed GIFs".  This technique does not use the LZW algorithm; the
       
   204 resulting GIF files are larger than usual, but are readable by all standard
       
   205 GIF decoders.
       
   206 
       
   207 We are required to state that
       
   208     "The Graphics Interchange Format(c) is the Copyright property of
       
   209     CompuServe Incorporated.  GIF(sm) is a Service Mark property of
       
   210     CompuServe Incorporated."
       
   211 
       
   212 
       
   213 REFERENCES
       
   214 ==========
       
   215 
       
   216 We highly recommend reading one or more of these references before trying to
       
   217 understand the innards of the JPEG software.
       
   218 
       
   219 The best short technical introduction to the JPEG compression algorithm is
       
   220 	Wallace, Gregory K.  "The JPEG Still Picture Compression Standard",
       
   221 	Communications of the ACM, April 1991 (vol. 34 no. 4), pp. 30-44.
       
   222 (Adjacent articles in that issue discuss MPEG motion picture compression,
       
   223 applications of JPEG, and related topics.)  If you don't have the CACM issue
       
   224 handy, a PostScript file containing a revised version of Wallace's article is
       
   225 available at ftp://ftp.uu.net/graphics/jpeg/wallace.ps.gz.  The file (actually
       
   226 a preprint for an article that appeared in IEEE Trans. Consumer Electronics)
       
   227 omits the sample images that appeared in CACM, but it includes corrections
       
   228 and some added material.  Note: the Wallace article is copyright ACM and IEEE,
       
   229 and it may not be used for commercial purposes.
       
   230 
       
   231 A somewhat less technical, more leisurely introduction to JPEG can be found in
       
   232 "The Data Compression Book" by Mark Nelson and Jean-loup Gailly, published by
       
   233 M&T Books (New York), 2nd ed. 1996, ISBN 1-55851-434-1.  This book provides
       
   234 good explanations and example C code for a multitude of compression methods
       
   235 including JPEG.  It is an excellent source if you are comfortable reading C
       
   236 code but don't know much about data compression in general.  The book's JPEG
       
   237 sample code is far from industrial-strength, but when you are ready to look
       
   238 at a full implementation, you've got one here...
       
   239 
       
   240 The best full description of JPEG is the textbook "JPEG Still Image Data
       
   241 Compression Standard" by William B. Pennebaker and Joan L. Mitchell, published
       
   242 by Van Nostrand Reinhold, 1993, ISBN 0-442-01272-1.  Price US$59.95, 638 pp.
       
   243 The book includes the complete text of the ISO JPEG standards (DIS 10918-1
       
   244 and draft DIS 10918-2).  This is by far the most complete exposition of JPEG
       
   245 in existence, and we highly recommend it.
       
   246 
       
   247 The JPEG standard itself is not available electronically; you must order a
       
   248 paper copy through ISO or ITU.  (Unless you feel a need to own a certified
       
   249 official copy, we recommend buying the Pennebaker and Mitchell book instead;
       
   250 it's much cheaper and includes a great deal of useful explanatory material.)
       
   251 In the USA, copies of the standard may be ordered from ANSI Sales at (212)
       
   252 642-4900, or from Global Engineering Documents at (800) 854-7179.  (ANSI
       
   253 doesn't take credit card orders, but Global does.)  It's not cheap: as of
       
   254 1992, ANSI was charging $95 for Part 1 and $47 for Part 2, plus 7%
       
   255 shipping/handling.  The standard is divided into two parts, Part 1 being the
       
   256 actual specification, while Part 2 covers compliance testing methods.  Part 1
       
   257 is titled "Digital Compression and Coding of Continuous-tone Still Images,
       
   258 Part 1: Requirements and guidelines" and has document numbers ISO/IEC IS
       
   259 10918-1, ITU-T T.81.  Part 2 is titled "Digital Compression and Coding of
       
   260 Continuous-tone Still Images, Part 2: Compliance testing" and has document
       
   261 numbers ISO/IEC IS 10918-2, ITU-T T.83.
       
   262 
       
   263 Some extensions to the original JPEG standard are defined in JPEG Part 3,
       
   264 a newer ISO standard numbered ISO/IEC IS 10918-3 and ITU-T T.84.  IJG
       
   265 currently does not support any Part 3 extensions.
       
   266 
       
   267 The JPEG standard does not specify all details of an interchangeable file
       
   268 format.  For the omitted details we follow the "JFIF" conventions, revision
       
   269 1.02.  A copy of the JFIF spec is available from:
       
   270 	Literature Department
       
   271 	C-Cube Microsystems, Inc.
       
   272 	1778 McCarthy Blvd.
       
   273 	Milpitas, CA 95035
       
   274 	phone (408) 944-6300,  fax (408) 944-6314
       
   275 A PostScript version of this document is available by FTP at
       
   276 ftp://ftp.uu.net/graphics/jpeg/jfif.ps.gz.  There is also a plain text
       
   277 version at ftp://ftp.uu.net/graphics/jpeg/jfif.txt.gz, but it is missing
       
   278 the figures.
       
   279 
       
   280 The TIFF 6.0 file format specification can be obtained by FTP from
       
   281 ftp://ftp.sgi.com/graphics/tiff/TIFF6.ps.gz.  The JPEG incorporation scheme
       
   282 found in the TIFF 6.0 spec of 3-June-92 has a number of serious problems.
       
   283 IJG does not recommend use of the TIFF 6.0 design (TIFF Compression tag 6).
       
   284 Instead, we recommend the JPEG design proposed by TIFF Technical Note #2
       
   285 (Compression tag 7).  Copies of this Note can be obtained from ftp.sgi.com or
       
   286 from ftp://ftp.uu.net/graphics/jpeg/.  It is expected that the next revision
       
   287 of the TIFF spec will replace the 6.0 JPEG design with the Note's design.
       
   288 Although IJG's own code does not support TIFF/JPEG, the free libtiff library
       
   289 uses our library to implement TIFF/JPEG per the Note.  libtiff is available
       
   290 from ftp://ftp.sgi.com/graphics/tiff/.
       
   291 
       
   292 
       
   293 ARCHIVE LOCATIONS
       
   294 =================
       
   295 
       
   296 The "official" archive site for this software is ftp.uu.net (Internet
       
   297 address 192.48.96.9).  The most recent released version can always be found
       
   298 there in directory graphics/jpeg.  This particular version will be archived
       
   299 as ftp://ftp.uu.net/graphics/jpeg/jpegsrc.v6b.tar.gz.  If you don't have
       
   300 direct Internet access, UUNET's archives are also available via UUCP; contact
       
   301 help@uunet.uu.net for information on retrieving files that way.
       
   302 
       
   303 Numerous Internet sites maintain copies of the UUNET files.  However, only
       
   304 ftp.uu.net is guaranteed to have the latest official version.
       
   305 
       
   306 You can also obtain this software in DOS-compatible "zip" archive format from
       
   307 the SimTel archives (ftp://ftp.simtel.net/pub/simtelnet/msdos/graphics/), or
       
   308 on CompuServe in the Graphics Support forum (GO CIS:GRAPHSUP), library 12
       
   309 "JPEG Tools".  Again, these versions may sometimes lag behind the ftp.uu.net
       
   310 release.
       
   311 
       
   312 The JPEG FAQ (Frequently Asked Questions) article is a useful source of
       
   313 general information about JPEG.  It is updated constantly and therefore is
       
   314 not included in this distribution.  The FAQ is posted every two weeks to
       
   315 Usenet newsgroups comp.graphics.misc, news.answers, and other groups.
       
   316 It is available on the World Wide Web at http://www.faqs.org/faqs/jpeg-faq/
       
   317 and other news.answers archive sites, including the official news.answers
       
   318 archive at rtfm.mit.edu: ftp://rtfm.mit.edu/pub/usenet/news.answers/jpeg-faq/.
       
   319 If you don't have Web or FTP access, send e-mail to mail-server@rtfm.mit.edu
       
   320 with body
       
   321 	send usenet/news.answers/jpeg-faq/part1
       
   322 	send usenet/news.answers/jpeg-faq/part2
       
   323 
       
   324 
       
   325 RELATED SOFTWARE
       
   326 ================
       
   327 
       
   328 Numerous viewing and image manipulation programs now support JPEG.  (Quite a
       
   329 few of them use this library to do so.)  The JPEG FAQ described above lists
       
   330 some of the more popular free and shareware viewers, and tells where to
       
   331 obtain them on Internet.
       
   332 
       
   333 If you are on a Unix machine, we highly recommend Jef Poskanzer's free
       
   334 PBMPLUS software, which provides many useful operations on PPM-format image
       
   335 files.  In particular, it can convert PPM images to and from a wide range of
       
   336 other formats, thus making cjpeg/djpeg considerably more useful.  The latest
       
   337 version is distributed by the NetPBM group, and is available from numerous
       
   338 sites, notably ftp://wuarchive.wustl.edu/graphics/graphics/packages/NetPBM/.
       
   339 Unfortunately PBMPLUS/NETPBM is not nearly as portable as the IJG software is;
       
   340 you are likely to have difficulty making it work on any non-Unix machine.
       
   341 
       
   342 A different free JPEG implementation, written by the PVRG group at Stanford,
       
   343 is available from ftp://havefun.stanford.edu/pub/jpeg/.  This program
       
   344 is designed for research and experimentation rather than production use;
       
   345 it is slower, harder to use, and less portable than the IJG code, but it
       
   346 is easier to read and modify.  Also, the PVRG code supports lossless JPEG,
       
   347 which we do not.  (On the other hand, it doesn't do progressive JPEG.)
       
   348 
       
   349 
       
   350 FILE FORMAT WARS
       
   351 ================
       
   352 
       
   353 Some JPEG programs produce files that are not compatible with our library.
       
   354 The root of the problem is that the ISO JPEG committee failed to specify a
       
   355 concrete file format.  Some vendors "filled in the blanks" on their own,
       
   356 creating proprietary formats that no one else could read.  (For example, none
       
   357 of the early commercial JPEG implementations for the Macintosh were able to
       
   358 exchange compressed files.)
       
   359 
       
   360 The file format we have adopted is called JFIF (see REFERENCES).  This format
       
   361 has been agreed to by a number of major commercial JPEG vendors, and it has
       
   362 become the de facto standard.  JFIF is a minimal or "low end" representation.
       
   363 We recommend the use of TIFF/JPEG (TIFF revision 6.0 as modified by TIFF
       
   364 Technical Note #2) for "high end" applications that need to record a lot of
       
   365 additional data about an image.  TIFF/JPEG is fairly new and not yet widely
       
   366 supported, unfortunately.
       
   367 
       
   368 The upcoming JPEG Part 3 standard defines a file format called SPIFF.
       
   369 SPIFF is interoperable with JFIF, in the sense that most JFIF decoders should
       
   370 be able to read the most common variant of SPIFF.  SPIFF has some technical
       
   371 advantages over JFIF, but its major claim to fame is simply that it is an
       
   372 official standard rather than an informal one.  At this point it is unclear
       
   373 whether SPIFF will supersede JFIF or whether JFIF will remain the de-facto
       
   374 standard.  IJG intends to support SPIFF once the standard is frozen, but we
       
   375 have not decided whether it should become our default output format or not.
       
   376 (In any case, our decoder will remain capable of reading JFIF indefinitely.)
       
   377 
       
   378 Various proprietary file formats incorporating JPEG compression also exist.
       
   379 We have little or no sympathy for the existence of these formats.  Indeed,
       
   380 one of the original reasons for developing this free software was to help
       
   381 force convergence on common, open format standards for JPEG files.  Don't
       
   382 use a proprietary file format!
       
   383 
       
   384 
       
   385 TO DO
       
   386 =====
       
   387 
       
   388 The major thrust for v7 will probably be improvement of visual quality.
       
   389 The current method for scaling the quantization tables is known not to be
       
   390 very good at low Q values.  We also intend to investigate block boundary
       
   391 smoothing, "poor man's variable quantization", and other means of improving
       
   392 quality-vs-file-size performance without sacrificing compatibility.
       
   393 
       
   394 In future versions, we are considering supporting some of the upcoming JPEG
       
   395 Part 3 extensions --- principally, variable quantization and the SPIFF file
       
   396 format.
       
   397 
       
   398 As always, speeding things up is of great interest.
       
   399 
       
   400 Please send bug reports, offers of help, etc. to jpeg-info@uunet.uu.net.