OLD | NEW |
1 | 1 |
2 /* pngread.c - read a PNG file | 2 /* pngread.c - read a PNG file |
3 * | 3 * |
4 * Last changed in libpng 1.2.43 [February 25, 2010] | 4 * Last changed in libpng 1.2.44 [June 26, 2010] |
5 * Copyright (c) 1998-2009 Glenn Randers-Pehrson | 5 * Copyright (c) 1998-2010 Glenn Randers-Pehrson |
6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) | 6 * (Version 0.96 Copyright (c) 1996, 1997 Andreas Dilger) |
7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) | 7 * (Version 0.88 Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc.) |
8 * | 8 * |
9 * This code is released under the libpng license. | 9 * This code is released under the libpng license. |
10 * For conditions of distribution and use, see the disclaimer | 10 * For conditions of distribution and use, see the disclaimer |
11 * and license in png.h | 11 * and license in png.h |
12 * | 12 * |
13 * This file contains routines that an application calls directly to | 13 * This file contains routines that an application calls directly to |
14 * read a PNG file or stream. | 14 * read a PNG file or stream. |
15 */ | 15 */ |
(...skipping 1503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1519 /* Read rest of file, and get additional chunks in info_ptr - REQUIRED */ | 1519 /* Read rest of file, and get additional chunks in info_ptr - REQUIRED */ |
1520 png_read_end(png_ptr, info_ptr); | 1520 png_read_end(png_ptr, info_ptr); |
1521 | 1521 |
1522 transforms = transforms; /* Quiet compiler warnings */ | 1522 transforms = transforms; /* Quiet compiler warnings */ |
1523 params = params; | 1523 params = params; |
1524 | 1524 |
1525 } | 1525 } |
1526 #endif /* PNG_INFO_IMAGE_SUPPORTED */ | 1526 #endif /* PNG_INFO_IMAGE_SUPPORTED */ |
1527 #endif /* PNG_SEQUENTIAL_READ_SUPPORTED */ | 1527 #endif /* PNG_SEQUENTIAL_READ_SUPPORTED */ |
1528 #endif /* PNG_READ_SUPPORTED */ | 1528 #endif /* PNG_READ_SUPPORTED */ |
OLD | NEW |