您好,登錄后才能下訂單哦!
php中有哪些圖片裁剪函數?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
具體內容如下
/* * 圖片裁剪工具 * 將指定文件裁剪成正方形 * 以中心為起始向四周裁剪 * @param $src_path string 源文件地址 * @param $des_path string 保存文件地址 * @param $des_w double 目標圖片寬度 * */ function img_cut_square($src_path,$des_path,$des_w=100){ $img_info = getimagesize($src_path);//獲取原圖像尺寸信息 $img_width = $img_info[0];//原圖寬度 $img_height = $img_info[1];//原圖高度 $img_type = $img_info[2];//圖片類型 1 為 GIF 格式、 2 為 JPEG/JPG 格式、3 為 PNG 格式 if($img_type != 2 && $img_type != 3) return ; /*計算縮放尺寸*/ if($img_height > $img_width){ $scale_width = $des_w;//縮放寬度 $scale_height = round($des_w / $img_width * $img_height);//縮放高度 $src_y = round(($scale_height - $des_w)/2); $src_x = 0; }else{ $scale_height = $des_w; $scale_width = round($des_w / $img_height * $img_width); $src_y = 0; $src_x = round(($scale_width - $des_w)/2); } $dst_ims = imagecreatetruecolor($scale_width, $scale_height);//創建真彩畫布 $white = imagecolorallocate($dst_ims, 255, 255, 255); imagefill($dst_ims, 0, 0, $white); if($img_type == 2){ $src_im = @imagecreatefromjpeg($src_path);//讀取原圖像 }else if($img_type == 3){ $src_im = @imagecreatefrompng($src_path);//讀取原圖像 } imagecopyresized($dst_ims, $src_im, 0, 0 ,0, 0 , $scale_width , $scale_height , $img_width,$img_height);//縮放圖片到指定尺寸 $dst_im = imagecreatetruecolor($des_w, $des_w); // $white = imagecolorallocate($dst_im, 255, 255, 255); // imagefill($dst_im, 0, 0, $white); imagecopy($dst_im, $dst_ims, 0, 0, $src_x, $src_y, $des_w, $des_w);//開始裁剪圖片為正方形 // imagecopyresampled($dst_im, $src_im, $src_x, $src_y, 0, 0, $real_width, $real_width,$img_width,$img_height); if($img_type == 2) { imagejpeg($dst_im, $des_path);//保存到文件 }else if($img_type == 3){ imagepng($dst_im,$des_path); } // imagejpeg($dst_im);//輸出到瀏覽器 imagedestroy($dst_im); imagedestroy($dst_ims); imagedestroy($src_im); }
一、phpStudy,是一個新手入門最常用的開發環境。二、WampServer,WampServer也同樣的也是和phpStudy一樣操作簡單對小白比較友好。三、XAMPP,XAMPP(Apache+MySQL+PHP+PERL)是一個功能強大的建站集成軟件包;四、MAMP,MAMP分為兩種MAMP和MAMP Pro for Mac。五、寶塔面板,寶塔面板是一款服務器管理軟件,支持windows和linux系統。六、UPUPW,UPUPW是目前Windows平臺下最具特色的Web服務器PHP套件。
關于php中有哪些圖片裁剪函數問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。