This is a discussion on php version for image filter within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Hi to everyone, I have PHP 5.0.4. Does this version support the imageFilter functions? If not, which one ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi to everyone,
I have PHP 5.0.4. Does this version support the imageFilter functions? If not, which one does support it? -- Thanks for your attention. Jean Pierre Daviau -- Easyphp1.8 Apache1.3.24 DEVC++, borland 5.5 windows Xp asus p4 s533/333/133 Intel(R) Celeron (R) CPU 2.00 GHz http://www.jeanpierredaviau.com |
|
|||
|
I just install: PHP 5.1.2 (cli) (build
at prompt>php -check-f delme.php Fatal error: Call to undefined function imagecreatefrompng() in C:\Documents and Settings\Jean Pierre\Bureau\delme.php on line 2 --------- delme.php --------------------- <?php $im = imagecreatefrompng('e.png'); if ($im && imagefilter($im, IMG_FILTER_BRIGHTNESS, 20)) { echo 'Image brightness changed.'; imagepng($im, 'f.png'); } else { echo 'Image brightness change failed.'; } imagedestroy($im); ?> --------------------------------------------------- |