php等比例縮放圖片及剪切圖片代碼分享
php等比例縮放圖片及剪切圖片代碼分享
/**
* 圖片縮放函數(shù)(可設(shè)置高度固定,寬度固定或者最大寬高,支持gif/jpg/png三種類(lèi)型)
* Author : Specs
*
* @param string $source_path 源圖片
* @param int $target_width 目標(biāo)寬度
* @param int $target_height 目標(biāo)高度
* @param string $fixed_orig 鎖定寬高(可選參數(shù) width、height或者空值)
* @return string
*/
function myImageResize($source_path, $target_width = 200, $target_height = 200, $fixed_orig = ''){
$source_info = getimagesize($source_path);
$source_width = $source_info[0];
$source_height = $source_info[1];
$source_mime = $source_info['mime'];
$ratio_orig = $source_width / $source_height;
if ($fixed_orig == 'width'){
//寬度固定
$target_height = $target_width / $ratio_orig;
}elseif ($fixed_orig == 'height'){
//高度固定
$target_width = $target_height * $ratio_orig;
}else{
//最大寬或最大高
if ($target_width / $target_height > $ratio_orig){
$target_width = $target_height * $ratio_orig;
}else{
$target_height = $target_width / $ratio_orig;
}
}
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);
imagecopyresampled($target_image, $source_image, 0, 0, 0, 0, $target_width, $target_height, $source_width, $source_height);
//header('Content-type: image/jpeg');
$imgArr = explode('.', $source_path);
$target_path = $imgArr[0] . '_new.' . $imgArr[1];
imagejpeg($target_image, $target_path, 100);
}
用法:
- myImageResize($filename, 200, 200); //最大寬高
- myImageResize($filename, 200, 200, 'width'); //寬度固定
- myImageResize($filename, 200, 200, 'height'); //高度固定
剪切圖片為固定大?。?/strong>
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;
// 源圖過(guò)高
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){ // 源圖過(guò)寬
$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);
$dotpos = strrpos($source_path, '.');
$imgName = substr($source_path, 0, $dotpos);
$suffix = substr($source_path, $dotpos);
$imgNew = $imgName . '_small' . $suffix;
imagejpeg($target_image, $imgNew, 100);
imagedestroy($source_image);
imagedestroy($target_image);
imagedestroy($cropped_image);
}
相關(guān)文章
PHP 使用位運(yùn)算實(shí)現(xiàn)四則運(yùn)算的代碼
這篇文章主要介紹了PHP 使用位運(yùn)算實(shí)現(xiàn)四則運(yùn)算的代碼,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2020-01-01
基于php設(shè)計(jì)模式中工廠(chǎng)模式詳細(xì)介紹
本篇文章是對(duì)php設(shè)計(jì)模式中工廠(chǎng)模式進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下2013-05-05
PHP運(yùn)行環(huán)境配置與開(kāi)發(fā)環(huán)境的配置(圖文教程)
本篇文章是對(duì)PHP運(yùn)行環(huán)境配置與開(kāi)發(fā)環(huán)境的配置進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下2013-06-06
php讀取qqwry.dat ip地址定位文件的類(lèi)實(shí)例代碼
下面小編就為大家?guī)?lái)一篇php讀取qqwry.dat ip地址定位文件的類(lèi)實(shí)例代碼。小編覺(jué)得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧2016-11-11
laravel框架之?dāng)?shù)據(jù)庫(kù)查出來(lái)的對(duì)象實(shí)現(xiàn)轉(zhuǎn)化為數(shù)組
今天小編就為大家分享一篇laravel框架之?dāng)?shù)據(jù)庫(kù)查出來(lái)的對(duì)象實(shí)現(xiàn)轉(zhuǎn)化為數(shù)組,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過(guò)來(lái)看看吧2019-10-10
Laravel給生產(chǎn)環(huán)境添加監(jiān)聽(tīng)事件(SQL日志監(jiān)聽(tīng))
這篇文章主要給大家介紹了關(guān)于Laravel給生產(chǎn)環(huán)境添加監(jiān)聽(tīng)事件(SQL日志監(jiān)聽(tīng))的相關(guān)資料,文中介紹的非常詳細(xì),對(duì)大家具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來(lái)一起看看吧。2017-06-06
Laravel5.4框架使用socialite實(shí)現(xiàn)github登錄的方法
這篇文章主要介紹了Laravel5.4框架使用socialite實(shí)現(xiàn)github登錄的方法,結(jié)合實(shí)例形式分析了Laravel相關(guān)下載、安裝、配置及github登陸、注冊(cè)、設(shè)置等相關(guān)操作技巧,需要的朋友可以參考下2019-03-03

