home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Library / source / png.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1998-12-17  |  863 b   |  34 lines

  1. //
  2. // Copyright (c) 1997,1998 Colosseum Builders, Inc.
  3. // All rights reserved.
  4. //
  5. // Colosseum Builders, Inc. makes no warranty, expressed or implied
  6. // with regards to this software. It is provided as is.
  7. //
  8. // See the README.TXT file that came with this software for restrictions
  9. // on the use and redistribution of this file or send E-mail to
  10. // info@colosseumbuilders.com
  11. //
  12.  
  13. //
  14. //  Title:  PNG Private Definitions
  15. //
  16. //  Author:  John M. Miano miano@colosseumbuilders.com
  17. //
  18. #include "pngpvt.h"
  19.  
  20. // PNG File Signature
  21. extern const UBYTE1 PngSignature [PngSignatureSize] =
  22.   {
  23.     137, 80, 78, 71, 13, 10, 26, 10,
  24.   } ;
  25.  
  26. // The order that length length codes are stored.
  27. extern const UBYTE1 PngLengthOrder [PngLengthSize] =
  28.   {
  29.     16, 17, 18,  0,  8,
  30.      7,  9,  6, 10,  5,
  31.     11,  4, 12,  3, 13,
  32.      2, 14,  1, 15,
  33.   } ;
  34.