Special Effects Using imagefilter( ): lighten picture just a little: : imagefilter « Graphics Image « PHP






Special Effects Using imagefilter( ): lighten picture just a little:

 
<?php
    $image = imagecreatefrompng("space.png");
    imagefilter($image, IMG_FILTER_BRIGHTNESS, 50);
    header("content-type: image/png");
    imagepng($image);
    imagedestroy($image);
?>
  
  








Related examples in the same category

1.IMG_FILTER_COLORIZE
2.IMG_FILTER_CONTRAST
3.IMG_FILTER_EDGEDETECT and IMG_FILTER_EMBOSS filters
4.IMG_FILTER_GAUSSIAN_BLUR and IMG_FILTER_SELECTIVE_BLUR
5.IMG_FILTER_GRAYSCALE and IMG_FILTER_NEGATE
6.smooths the picture just a little