|
1 | 1 | <?php
|
2 | 2 | /* vim: set expandtab tabstop=4 shiftwidth=4: */
|
3 |
| -// +----------------------------------------------------------------------+ |
4 |
| -// | PHP Version 4 | |
5 |
| -// +----------------------------------------------------------------------+ |
6 |
| -// | Copyright (c) 1997-2003 The PHP Group | |
7 |
| -// +----------------------------------------------------------------------+ |
8 |
| -// | This source file is subject to version 2.02 of the PHP license, | |
9 |
| -// | that is bundled with this package in the file LICENSE, and is | |
10 |
| -// | available at through the world-wide-web at | |
11 |
| -// | http://www.php.net/license/2_02.txt. | |
12 |
| -// | If you did not receive a copy of the PHP license and are unable to | |
13 |
| -// | obtain it through the world-wide-web, please send a note to | |
14 |
| -// | [email protected] so we can mail you a copy immediately. | |
15 |
| -// +----------------------------------------------------------------------+ |
16 |
| -// | Author: Stefan Neufeind <[email protected]> | |
17 |
| -// +----------------------------------------------------------------------+ |
18 |
| -// |
19 |
| -// $Id$ |
20 |
| - |
21 | 3 | /**
|
22 |
| -* Class for color-handling |
23 |
| -* |
24 |
| -* @author Stefan Neufeind <[email protected]> |
25 |
| -* @package Image_Canvas |
26 |
| -* @category images |
27 |
| -* @license The PHP License, version 2.02 |
28 |
| -*/ |
| 4 | + * Image_Canvas |
| 5 | + * |
| 6 | + * Canvas based creation of images to facilitate different output formats |
| 7 | + * |
| 8 | + * PHP versions 4 and 5 |
| 9 | + * |
| 10 | + * LICENSE: This library is free software; you can redistribute it and/or modify |
| 11 | + * it under the terms of the GNU Lesser General Public License as published by |
| 12 | + * the Free Software Foundation; either version 2.1 of the License, or (at your |
| 13 | + * option) any later version. This library is distributed in the hope that it |
| 14 | + * will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty |
| 15 | + * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser |
| 16 | + * General Public License for more details. You should have received a copy of |
| 17 | + * the GNU Lesser General Public License along with this library; if not, write |
| 18 | + * to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA |
| 19 | + * 02111-1307 USA |
| 20 | + * |
| 21 | + * @category Images |
| 22 | + * @package Image_Canvas |
| 23 | + * @author Jesper Veggerby <[email protected]> |
| 24 | + * @author Stefan Neufeind <[email protected]> |
| 25 | + * @copyright 2003-2009 The PHP Group |
| 26 | + * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 |
| 27 | + * @version SVN: $Id$ |
| 28 | + * @link http://pear.php.net/package/Image_Canvas |
| 29 | + */ |
29 | 30 |
|
30 | 31 | /**
|
31 | 32 | * Color class to be extended; from package PEAR::Image_Color
|
|
0 commit comments