溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php怎么自定義裁剪圖片大小

發(fā)布時間:2021-08-19 13:56:10 來源:億速云 閱讀:122 作者:chen 欄目:建站服務器

本篇內容主要講解“php怎么自定義裁剪圖片大小”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“php怎么自定義裁剪圖片大小”吧!

  1. <?php
    /**
    * 圖像裁剪
    * @param $title string 原圖路徑
    * @param $content string 需要裁剪的寬
    * @param $encode string 需要裁剪的高
    */
    function imagecropper($source_path, $target_width, $target_height)
    {
    $source_info = getimagesize($source_path);
    $source_width = $source_info[0];
    $source_height = $source_info[1];
    $source_mime = $source_info['mime'];
    $source_ratio = $source_height / $source_width;
    $target_ratio = $target_height / $target_width;
    // 源圖過高
    if ($source_ratio > $target_ratio)
    {
    $cropped_width = $source_width;
    $cropped_height = $source_width * $target_ratio;
    $source_x = 0;
    $source_y = ($source_height - $cropped_height) / 2;
    }
    // 源圖過寬
    elseif ($source_ratio < $target_ratio)
    {
    $cropped_width = $source_height / $target_ratio;
    $cropped_height = $source_height;
    $source_x = ($source_width - $cropped_width) / 2;
    $source_y = 0;
    }
    // 源圖適中
    else
    {
    $cropped_width = $source_width;
    $cropped_height = $source_height;
    $source_x = 0;
    $source_y = 0;
    }
    switch ($source_mime)
    {
    case 'image/gif':
    $source_image = imagecreatefromgif($source_path);
    break;
    case 'image/jpeg':
    $source_image = imagecreatefromjpeg($source_path);
    break;
    case 'image/png':
    $source_image = imagecreatefrompng($source_path);
    break;
    default:
    return false;
    break;
    }
    $target_image = imagecreatetruecolor($target_width, $target_height);
    $cropped_image = imagecreatetruecolor($cropped_width, $cropped_height);
    // 裁剪
    imagecopy($cropped_image, $source_image, 0, 0, $source_x, $source_y, $cropped_width, $cropped_height);
    // 縮放
    imagecopyresampled($target_image, $cropped_image, 0, 0, 0, 0, $target_width, $target_height, $cropped_width, $cropped_height);
    //保存圖片到本地(兩者選一)
    //$randNumber = mt_rand(00000, 99999). mt_rand(000, 999);
    //$fileName = substr(md5($randNumber), 8, 16) .".png";
    //imagepng($target_image,'./'.$fileName);
    //imagedestroy($target_image);
    //直接在瀏覽器輸出圖片(兩者選一)
    header('Content-Type: image/jpeg');
    imagepng($target_image);
    imagedestroy($target_image);
    imagejpeg($target_image);
    imagedestroy($source_image);
    imagedestroy($target_image);
    imagedestroy($cropped_image);
    }
    //調用
    //imagecropper('./img033.jpg',300,300);
    imagecropper('./img033.jpg',140,140);

到此,相信大家對“php怎么自定義裁剪圖片大小”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續(xù)學習!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI