PHP实现对图片的反色处理功能【测试可用】
发布:smiling 来源: PHP粉丝网 添加日期:2021-09-02 10:52:31 浏览: 评论:0
本文实例讲述了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);
Tags: PHP反色处理
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)