
AB模板網(www.839518.com)專注企業網站模板制作,包括企業pbootcms網站模板,靜態網頁模板,網站源碼下載,HTML網站模板等等。XML地圖 網站地圖 今日更新
免責聲明:本站所有資源(模板、圖片)搜集整理于互聯網或者網友提供,僅供學習與交流使用,如果不小心侵犯到你的權益,請及時聯系我們刪除該資源。
// 剪切圖片 function cut_img($src_image, $out_image = null, int $new_width = null, int $new_height = null, $img_quality = 90) { // 輸出地址 if (! $out_image) $out_image = $src_image; // 讀取配置文件設置 if (! $new_width && ! $new_height) return; // 獲取圖片屬性 list ($width, $height, $type, $attr) = getimagesize($src_image); switch ($type) { case 1: $img = imagecreatefromgif($src_image); break; case 2: $img = imagecreatefromjpeg($src_image); break; case 3: $img = imagecreatefrompng($src_image); break; } // 不限定是等比例縮放 if (! $new_width) { $new_width = floor($width * ($new_height / $height)); } if (! $new_height) { $new_height = floor($height * ($new_width / $width)); } // 創建畫布 $new_img = imagecreatetruecolor($new_width, $new_height); // 創建透明畫布,避免黑色 if ($type == 1 || $type == 3) { $color = imagecolorallocate($new_img, 255, 255, 255); imagefill($new_img, 0, 0, $color); imagecolortransparent($new_img, $color); } // 先縮放 $scale = max($new_width / $width, $new_height / $height); $scale_width = floor($scale * $width); $scale_height = floor($scale * $height); $scale_img = imagecreatetruecolor($scale_width, $scale_height); // 創建畫布 if(function_exists("ImageCopyResampled")) { imagecopyresampled($scale_img, $img, 0, 0, 0, 0, $scale_width, $scale_height, $width, $height); } else { imagecopyresized($scale_img, $img, 0, 0, 0, 0, $scale_width, $scale_height, $width, $height); } //再裁剪 $start_x = ($scale_width - $new_width) / 2; $start_y = ($scale_height - $new_height) / 2; //拷貝剪切的圖像數據到畫板,生成剪切圖像 imagecopy($new_img, $scale_img, 0, 0, $start_x, $start_y, $scale_width, $scale_height); check_dir(dirname($out_image), true); // 檢查輸出目錄 switch ($type) { case 1: imagegif($new_img, $out_image, $img_quality); break; case 2: imagejpeg($new_img, $out_image, $img_quality); break; case 3: imagepng($new_img, $out_image, $img_quality / 10); // $quality參數取值范圍0-99 在php 5.1.2之后變更為0-9 break; default: imagejpeg($new_img, $out_image, $img_quality); } imagedestroy($new_img); imagedestroy($img); return true; } |
{pboot:list scode=*} <a href= "[list:link]"><img src="[list:ico width=600 height=400]" /></a> {/pboot:list} |