36 lines
665 B
C
36 lines
665 B
C
/* pngtypes.h - array of chunk-types for libpng
|
|
*
|
|
* libpng 1.0.5s - February 18, 2000
|
|
* For conditions of distribution and use, see copyright notice in png.h
|
|
* Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.
|
|
* Copyright (c) 1996, 1997 Andreas Dilger
|
|
* Copyright (c) 1998, 1999, 2000 Glenn Randers-Pehrson
|
|
*/
|
|
|
|
/* Constant strings for known chunk types. If you need to add a chunk,
|
|
* define the string in png.h and invoke it here.
|
|
*/
|
|
|
|
PNG_IHDR;
|
|
PNG_IDAT;
|
|
PNG_IEND;
|
|
PNG_PLTE;
|
|
PNG_bKGD;
|
|
PNG_cHRM;
|
|
PNG_gAMA;
|
|
PNG_hIST;
|
|
PNG_iCCP;
|
|
PNG_iTXt;
|
|
PNG_oFFs;
|
|
PNG_pCAL;
|
|
PNG_pHYs;
|
|
PNG_sBIT;
|
|
PNG_sCAL;
|
|
PNG_sPLT;
|
|
PNG_sRGB;
|
|
PNG_tEXt;
|
|
PNG_tIME;
|
|
PNG_tRNS;
|
|
PNG_zTXt;
|
|
|