/ Published in: PHP
URL: http://davidwalsh.name/php-image-filter
Expand |
Embed | Plain Text
//to black and white $img = imagecreatefrompng('dw-manipulate-me.png'); imagefilter($img,IMG_FILTER_GRAYSCALE); imagepng($img,'db-bw.png'); imagedestroy($img); } //to negative $img = imagecreatefrompng('dw-manipulate-me.png'); imagefilter($img,IMG_FILTER_NEGATE); imagepng($img,'db-negative.png'); imagedestroy($img); } //to Sepia $img = imagecreatefrompng('dw-manipulate-me.png'); imagefilter($img,IMG_FILTER_GRAYSCALE); imagefilter($img,IMG_FILTER_COLORIZE,100,50,0); imagepng($img,'db-sepia.png'); imagedestroy($img); }
You need to login to post a comment.
