中文字幕第五页-中文字幕第页-中文字幕韩国-中文字幕最新-国产尤物二区三区在线观看-国产尤物福利视频一区二区

玩php你會(huì)圖像裁剪嗎創(chuàng)新互聯(lián)教你圖像裁剪服務(wù)器搭建

2023-11-14    分類: 網(wǎng)站建設(shè)

在我們的工作的項(xiàng)目中,有時(shí)候我們需要顯示規(guī)定尺寸的圖片,雖然可以通過(guò)css來(lái)控制顯示大小。但是如果圖片過(guò)大,會(huì)造成加載的延遲,影響網(wǎng)站整體性能。因此,我們需要一個(gè)服務(wù)器來(lái)幫助我們進(jìn)行圖片的裁剪。流程大致是,首先我們傳給服務(wù)器原圖像和裁剪的尺寸,然后服務(wù)器進(jìn)行裁剪,生成對(duì)應(yīng)的裁剪圖片,下次我們?cè)僭L問(wèn)相同圖像和相同的裁剪尺寸的時(shí)候,我們就不需要裁剪,直接進(jìn)行圖片的訪問(wèn)就行。

Talk is cheap, show me the code.

<?php// ①構(gòu)建圖片請(qǐng)求地址比如  http://xxx.com/resize.php?site=www&width=300&height=200&mode=2&path=uploadfile/helloworld.png// ②配置nginx重寫(xiě)規(guī)則  rewrite /s/(.*)/(\d+)x(\d+)-(\d)/(.*) /s/resize.php?site=$1&width=$2&height=$3&mode=$4&path=$5 last;//③進(jìn)行裁剪圖片的處理$path = trim($_GET['path']);$mode = intval($_GET['mode']);$site = trim($_GET['site']);$width = intval($_GET['width']);$height = intval($_GET['height']);$site_list = array('crop' => '.');$orig_dir = dirname(__FILE__);if (!array_key_exists($site, $site_list)) {header('HTTp/1.1 400 bad Request');exit();}if ($mode > 3 || $mode < 0) {header('HTTp/1.1 400 bad Request');exit();}$orig_file = $site_list[$site] . $path;if (!file_exists($orig_file)) {header('HTTp/1.1 404 Not Found');exit();}$file_ext = '.' . pathinfo($path, pATHINFO_EXTENSION);$file_name = basename($path, $file_ext);$save_path = "{$orig_dir}/{$site}/{$width}x{$height}-{$mode}{$path}";$save_dir = dirname($save_path);if (!file_exists($save_dir)) {wpx_mkdir($save_dir);}$target_width = $width;$target_height = $height;$save_image = $save_dir . '/' . $file_name . '.jpg';if (file_exists($save_image)) {header('Content-Type: image/jpeg');header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');echo file_get_contents($save_image);}imagecropper2($orig_file, $target_width, $target_height, $save_image);die;//原圖像對(duì)應(yīng)縮放裁剪,會(huì)拉伸圖片function imagecropper2($source_path, $width, $height, $save_image){//獲取原圖像$filename的寬度$width_orig和高度$height_orig$info =  getimagesize($source_path);$width_orig = $info[0];$height_orig = $info[1];$mime = $info['mime'];//根據(jù)參數(shù)$width和$height值,換算出等比例縮放的高度和寬度if ($width && ($width_orig<$height_orig)){$width = ($height/$height_orig)*$width_orig;}else{$height = ($width / $width_orig)*$height_orig;}//將原圖縮放到這個(gè)新創(chuàng)建的圖片資源中$image_p = imagecreatetruecolor($width, $height);//獲取原圖的圖像資源if($mime=='image/jpeg'){$image = imagecreatefromjpeg($source_path);}elseif($mime=='image/png'){$image = imagecreatefrompng($source_path);}elseif($mime=='image/gif'){$image = imagecreatefromgif($source_path);}//使用imagecopyresampled()函數(shù)進(jìn)行縮放設(shè)置imagecopyresampled($image_p,$image,0,0,0,0,$width,$height,$width_orig,$height_orig);//將縮放后的圖片$image_p保存,100(質(zhì)量最佳,文件大)if($mime=='image/jpeg'){imagejpeg($image_p,$save_image);header('Content-Type: image/jpeg');imagejpeg($image_p);}elseif($mime=='image/png'){imagepng($image_p,$save_image);header('Content-Type: image/jpeg');imagepng($image_p);}else{imagegif($image_p,$save_image);header('Content-Type: image/jpeg');imagegif($image_p);}}//進(jìn)行比例保存裁剪,會(huì)丟失圖像部分像素function imagecropper($source_path, $target_width, $target_height, $save_image){$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;}// 源圖過(guò)寬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);// 裁剪$bool = imagecopy($cropped_image, $source_image, 0, 0, $source_x, $source_y, $cropped_width, $cropped_height);// 縮放$bool = imagecopyresampled($target_image, $cropped_image, 0, 0, 0, 0, $target_width, $target_height, $cropped_width, $cropped_height);imagejpeg($target_image, $save_image);header('Content-Type: image/jpeg');imagejpeg($target_image);imagedestroy($source_image);imagedestroy($target_image);imagedestroy($cropped_image);}// 循環(huán)生成目錄function wpx_mkdir($dir, $mode = 0777){if (is_dir($dir) || @mkdir($dir, $mode)) {return true;}if (!wpx_mkdir(dirname($dir), $mode)) {return false;}return @mkdir($dir, $mode);}

  • 通過(guò)上面的處理,我們就將圖片按照我們?cè)O(shè)置的尺寸進(jìn)行了裁剪。我們還可以定期對(duì)裁剪圖片進(jìn)行清理,這樣就不需要占用太多服務(wù)器空間。只有經(jīng)常訪問(wèn)的圖片才會(huì)一直保存。

分享名稱:玩php你會(huì)圖像裁剪嗎創(chuàng)新互聯(lián)教你圖像裁剪服務(wù)器搭建
分享路徑:http://www.2m8n56k.cn/news15/294465.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制網(wǎng)站品牌網(wǎng)站制作移動(dòng)網(wǎng)站建設(shè)品牌網(wǎng)站設(shè)計(jì)小程序開(kāi)發(fā)網(wǎng)站設(shè)計(jì)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:[email protected]。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

營(yíng)銷型網(wǎng)站建設(shè)
主站蜘蛛池模板: 成人高清无遮挡免费视频软件 | 一级毛片无毒不卡直接观看 | 国内精品久久精品 | 国产精品午夜国产小视频 | 国产午夜免费不卡精品理论片 | 欧美成人精品第一区 | 国产成人免费午夜在线观看 | 亚洲欧美视频一区 | 美女免费黄网站 | 成人男女网18免费0 成人男女网18免费看 | 亚洲国产成+人+综合 | 国产欧美日韩精品a在线观看 | 久久亚洲视频 | 久久久综合久久 | 337p粉嫩大胆噜噜噜鲁 | 欧美综合自拍亚洲综合百度 | 青青自拍视频一区二区三区 | 亚洲成人精品久久 | 久久久久在线观看 | 日本久久综合网 | 亚洲人成高清 | 日本不卡免费高清视频 | 精品国产一级毛片 | 高清一区二区在线观看 | 婷婷三级 | 在线观看中文字幕国产 | 国产乱子伦片免费观看中字 | 真人一级毛片全部免 | 免费国产成人高清在线看软件 | 亚洲欧洲国产精品 | 二区久久国产乱子伦免费精品 | 国产合集91合集久久日 | 国产二区自拍 | 免费一级特黄特色黄大任片 | 久久精品国产亚洲麻豆 | 免费人成在线观看网站品爱网 | 在线观看国产亚洲 | 久久97视频 | 免费看欧美成人性色生活片 | 亚洲精品在线免费观看视频 | 欧美成人免费夜夜黄啪啪 |