IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> PHP知识库 -> php中将图片裁剪为圆形 -> 正文阅读

[PHP知识库]php中将图片裁剪为圆形

   (codeIgniter框架为基础)
     /**
     * 获取网络图内容
     * @param $url  网络图片url
     * @return bool
     */
   function http_get_data($url)
    {
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
        curl_setopt($ch, CURLOPT_URL, $url);
        ob_start();
        curl_exec($ch);
        $return_content = ob_get_contents();
        ob_end_clean();
        $return_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
        return $return_content;
    }
     /**
     * 获取网络图片类型
     * @param $url  网络图片url,支持不带后缀名url
     * @return bool
     */
    private function getNetworkImgType($url)
    {
        $ch = curl_init(); //初始化curl
        curl_setopt($ch, CURLOPT_URL, $url); //设置需要获取的URL
        curl_setopt($ch, CURLOPT_NOBODY, 1);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 3);//设置超时
        curl_setopt($ch, CURLOPT_TIMEOUT, 3);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //支持https
        curl_exec($ch);//执行curl会话
        $http_code = curl_getinfo($ch);//获取curl连接资源句柄信息
        curl_close($ch);//关闭资源连接
        if ($http_code['http_code'] == 200) {
            $theImgType = explode('/', $http_code['content_type']);
            if ($theImgType[0] == 'image') {
                return $theImgType[1];
            } else {
                return false;
            }
        } else {
            return false;
        }
    }
   /**
    * 生成图片文件流
    * @param $file  网络图片地址
    * @return bool
    */
   function createImageFromFile($file)
    {
        if (preg_match('/http(s)?:\/\//', $file)) {
            $fileSuffix = $this->getNetworkImgType($file);
        } else {
            $fileSuffix = pathinfo($file, PATHINFO_EXTENSION);
        }
        if (!$fileSuffix) return false;
        switch ($fileSuffix) {
            case 'jpeg':
                if (!strpos($file, 'qnimg.ruwii.com') && !strpos($file, 'upload')) {
                    // imagecreatefromstring:从字符串中的图像流新建一图像, 返回一个图像标识符,其表达了从给定字符串得来的图像
                    $theImage = @imagecreatefromstring($this->http_get_data($file));
                } else {
                    $theImage = @imagecreatefromjpeg($file);
                    if (!$theImage) {
                        $theImage = @imagecreatefromstring($this->http_get_data($file));
                    }
                }
                break;
            case 'jpg':
                if (!strpos($file, 'qnimg.ruwii.com') && !strpos($file, 'upload')) {
                    $theImage = @imagecreatefromstring($this->http_get_data($file));
                } else {
                    $theImage = @imagecreatefromjpeg($file);
                    if (!$theImage) {
                        $theImage = @imagecreatefromstring($this->http_get_data($file));
                    }
                }
                break;
            case 'png':
                if (!strpos($file, 'qnimg.ruwii.com') && !strpos($file, 'upload')) {
                    $theImage = @imagecreatefromstring($this->http_get_data($file));
                } else {
                    $theImage = @imagecreatefrompng($file);
                    if (!$theImage) {
                        $theImage = @imagecreatefromstring($this->http_get_data($file));
                    }
                }
                break;
            case 'gif':
                if (!strpos($file, 'qnimg.ruwii.com') && !strpos($file, 'upload')) {
                    $theImage = @imagecreatefromstring($this->http_get_data($file));
                } else {
                    $theImage = @imagecreatefromgif($file);
                    if (!$theImage) {
                        $theImage = @imagecreatefromstring($this->http_get_data($file));
                    }
                }
                break;
            default:
                $theImage = @imagecreatefromstring($this->http_get_data($file));
                break;
        }
        return $theImage;
    }
    /**
    * 将图片切割为圆形
    * @param imgpath 图片地址(可以为网络地址,也可以为本地图片)
    * @return bool
    */
	function changeCircularImg($imgpath)
	    {
	        $src_img = null;
	        //如果$imgpath为网络地址
	        $src_img = $this->createImageFromFile($imgpath);
	        //如果如果$imgpath为本地图片地址
	        //$src_img = @imagecreatefromstring(file_get_contents($imgpath));(已经测试可用)
	        $wh = getimagesize($imgpath);
	        $w = $wh[0];
	        $h = $wh[1];
	        $w = min($w, $h);
	        $h = $w;
	        $img = imagecreatetruecolor($w, $h); //这一句一定要有
	        imagesavealpha($img, true);
	        //拾取一个完全透明的颜色,最后一个参数127为全透明
	        $bg = imagecolorallocatealpha($img, 255, 255, 255, 127);
	        imagefill($img, 0, 0, $bg);
	        imagesavealpha($img , true);
	        $r = $w / 2;
	       //圆半径
	        $y_x = $r; //圆心X坐标
	        $y_y = $r; //圆心Y坐标
	        for ($x = 0; $x < $w;
	             $x++) {
	            for ($y = 0; $y < $h; $y++) {
	                $rgbColor = imagecolorat($src_img, $x,
	                    $y);
	                    //根据数学公式圆的计算方式 算的 (x-r)(x-r)+(y-r)(y-r)=r*r (x,y坐标点 r半径)
	                if (((($x - $r) * ($x - $r) + ($y - $r) * ($y - $r)) < ($r * $r))) {
	                    imagesetpixel($img, $x, $y, $rgbColor);
	                }
	            }
	        }
	        return $img;
	    }
  PHP知识库 最新文章
Laravel 下实现 Google 2fa 验证
UUCTF WP
DASCTF10月 web
XAMPP任意命令执行提升权限漏洞(CVE-2020-
[GYCTF2020]Easyphp
iwebsec靶场 代码执行关卡通关笔记
多个线程同步执行,多个线程依次执行,多个
php 没事记录下常用方法 (TP5.1)
php之jwt
2021-09-18
上一篇文章      下一篇文章      查看所有文章
加:2022-02-14 20:53:46  更:2022-02-14 20:56:05 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/23 11:20:55-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码