| 1 | /* ************************************************************************** */
|
|---|
| 2 | /* * * */
|
|---|
| 3 | /* * COPYRIGHT NOTICE: * */
|
|---|
| 4 | /* * * */
|
|---|
| 5 | /* * Copyright (c) 2000-2007 Gerard Juyn ([email protected]) * */
|
|---|
| 6 | /* * [You may insert additional notices after this sentence if you modify * */
|
|---|
| 7 | /* * this source] * */
|
|---|
| 8 | /* * * */
|
|---|
| 9 | /* * For the purposes of this copyright and license, "Contributing Authors" * */
|
|---|
| 10 | /* * is defined as the following set of individuals: * */
|
|---|
| 11 | /* * * */
|
|---|
| 12 | /* * Gerard Juyn * */
|
|---|
| 13 | /* * Glenn Randers-Pehrson * */
|
|---|
| 14 | /* * * */
|
|---|
| 15 | /* * The MNG Library is supplied "AS IS". The Contributing Authors * */
|
|---|
| 16 | /* * disclaim all warranties, expressed or implied, including, without * */
|
|---|
| 17 | /* * limitation, the warranties of merchantability and of fitness for any * */
|
|---|
| 18 | /* * purpose. The Contributing Authors assume no liability for direct, * */
|
|---|
| 19 | /* * indirect, incidental, special, exemplary, or consequential damages, * */
|
|---|
| 20 | /* * which may result from the use of the MNG Library, even if advised of * */
|
|---|
| 21 | /* * the possibility of such damage. * */
|
|---|
| 22 | /* * * */
|
|---|
| 23 | /* * Permission is hereby granted to use, copy, modify, and distribute this * */
|
|---|
| 24 | /* * source code, or portions hereof, for any purpose, without fee, subject * */
|
|---|
| 25 | /* * to the following restrictions: * */
|
|---|
| 26 | /* * * */
|
|---|
| 27 | /* * 1. The origin of this source code must not be misrepresented; * */
|
|---|
| 28 | /* * you must not claim that you wrote the original software. * */
|
|---|
| 29 | /* * * */
|
|---|
| 30 | /* * 2. Altered versions must be plainly marked as such and must not be * */
|
|---|
| 31 | /* * misrepresented as being the original source. * */
|
|---|
| 32 | /* * * */
|
|---|
| 33 | /* * 3. This Copyright notice may not be removed or altered from any source * */
|
|---|
| 34 | /* * or altered source distribution. * */
|
|---|
| 35 | /* * * */
|
|---|
| 36 | /* * The Contributing Authors specifically permit, without fee, and * */
|
|---|
| 37 | /* * encourage the use of this source code as a component to supporting * */
|
|---|
| 38 | /* * the MNG and JNG file format in commercial products. If you use this * */
|
|---|
| 39 | /* * source code in a product, acknowledgment would be highly appreciated. * */
|
|---|
| 40 | /* * * */
|
|---|
| 41 | /* ************************************************************************** */
|
|---|
| 42 | /* * * */
|
|---|
| 43 | /* * Parts of this software have been adapted from the libpng package. * */
|
|---|
| 44 | /* * Although this library supports all features from the PNG specification * */
|
|---|
| 45 | /* * (as MNG descends from it) it does not require the libpng package. * */
|
|---|
| 46 | /* * It does require the zlib library and optionally the IJG jpeg library, * */
|
|---|
| 47 | /* * and/or the "little-cms" library by Marti Maria (depending on the * */
|
|---|
| 48 | /* * inclusion of support for JNG and Full-Color-Management respectively. * */
|
|---|
| 49 | /* * * */
|
|---|
| 50 | /* * This library's function is primarily to read and display MNG * */
|
|---|
| 51 | /* * animations. It is not meant as a full-featured image-editing * */
|
|---|
| 52 | /* * component! It does however offer creation and editing functionality * */
|
|---|
| 53 | /* * at the chunk level. * */
|
|---|
| 54 | /* * (future modifications may include some more support for creation * */
|
|---|
| 55 | /* * and or editing) * */
|
|---|
| 56 | /* * * */
|
|---|
| 57 | /* ************************************************************************** */
|
|---|