這篇文章主要介紹了PHP實現對圖片的反色處理功能,涉及php針對圖片的讀取、數值運算等相關操作技巧,需要的朋友可以參考下
本文實例講述了PHP實作圖片的反色處理功能。分享給大家供大家參考,具體如下:
今天有個需求用php對圖片進行反色,和轉灰,之前不知道可不可行,後來看到了imagefilter()
函數,用來轉灰綽綽有餘,好強大;
imagefilter($im, IMG_FILTER_GRAYSCALE)
#當然也有人在css裡面設定變灰
##
<style type="text/css"> img { -webkit-filter: grayscale(1);/* Webkit */ filter:gray;/* IE6-9 */ filter: grayscale(1);/* W3C */ } </style>
php轉色程式碼:
<?php /** * 主要用于图片的处理函数 */ //图片的反色功能 function color($url) { //获取图片的信息 list($width, $height, $type, $attr)= getimagesize($url); $imagetype = strtolower(image_type_to_extension($type,false)); $fun = 'imagecreatefrom'.($imagetype == 'jpg'?'jpeg':$imagetype); $img = $fun($url); for ($y=0; $y < $height; $y++) { for ($x=0; $x <$width; $x++) { //获取颜色的所以值 $index = imagecolorat($img, $x, $y); //获取颜色的数组 $color = imagecolorsforindex($img, $index); //颜色值的反转 $red = 256 - $color['red']; $green = 256 - $color['green']; $blue = 256 - $color['blue']; $hex = imagecolorallocate($img, $red, $green, $blue); //给每一个像素分配颜色值 imagesetpixel($img, $x, $y, $hex); } } //输出图片 switch ($imagetype) { case 'gif': imagegif($img); break; case 'jpeg': imagejpeg($img); break; case 'png': imagepng($img); break; default: break; } }
測試程式碼:
$imgurl='1.jpg'; echo color($imgurl);
##您可能感興趣的文章:
php透過pecl方式安裝擴充的實例講解php技巧#php學習筆記之mb_strstr的基本使用php技巧PHP刪除數組中指定下標的元素方法php實例########################## ##
以上是PHP實作圖片的反色處理功能php技巧的詳細內容。更多資訊請關注PHP中文網其他相關文章!