PHP實(shí)現(xiàn)圖片壓縮的兩則實(shí)例
本文介紹了PHP實(shí)現(xiàn)圖片壓縮的兩種方法,讀者可以根據(jù)具體應(yīng)用參考或加以改進(jìn),以適應(yīng)自身應(yīng)用需求!廢話不多說(shuō),主要代碼部分如下:
實(shí)例1:
<?php /** * desription 壓縮圖片 * @param sting $imgsrc 圖片路徑 * @param string $imgdst 壓縮后保存路徑 */ function image_png_size_add($imgsrc,$imgdst){ list($width,$height,$type)=getimagesize($imgsrc); $new_width = ($width>600?600:$width)*0.9; $new_height =($height>600?600:$height)*0.9; switch($type){ case 1: $giftype=check_gifcartoon($imgsrc); if($giftype){ header('Content-Type:image/gif'); $image_wp=imagecreatetruecolor($new_width, $new_height); $image = imagecreatefromgif($imgsrc); imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); imagejpeg($image_wp, $imgdst,75); imagedestroy($image_wp); } break; case 2: header('Content-Type:image/jpeg'); $image_wp=imagecreatetruecolor($new_width, $new_height); $image = imagecreatefromjpeg($imgsrc); imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); imagejpeg($image_wp, $imgdst,75); imagedestroy($image_wp); break; case 3: header('Content-Type:image/png'); $image_wp=imagecreatetruecolor($new_width, $new_height); $image = imagecreatefrompng($imgsrc); imagecopyresampled($image_wp, $image, 0, 0, 0, 0, $new_width, $new_height, $width, $height); imagejpeg($image_wp, $imgdst,75); imagedestroy($image_wp); break; } } /** * desription 判斷是否gif動(dòng)畫 * @param sting $image_file圖片路徑 * @return boolean t 是 f 否 */ function check_gifcartoon($image_file){ $fp = fopen($image_file,'rb'); $image_head = fread($fp,1024); fclose($fp); return preg_match("/".chr(0x21).chr(0xff).chr(0x0b).'NETSCAPE2.0'."/",$image_head)?false:true; } ?>
實(shí)例2:
<?php /* ---------------------------------------------------------------------- 函數(shù):調(diào)整圖片尺寸或生成縮略圖 返回:True/False 參數(shù): $Image 需要調(diào)整的圖片(含路徑) $Dw=450 調(diào)整時(shí)最大寬度;縮略圖時(shí)的絕對(duì)寬度 $Dh=450 調(diào)整時(shí)最大高度;縮略圖時(shí)的絕對(duì)高度 $Type=1 1,調(diào)整尺寸; 2,生成縮略圖 $path='img/';//路徑 $phtypes=array( 'img/gif', 'img/jpg', 'img/jpeg', 'img/bmp', 'img/pjpeg', 'img/x-png' ); Function Img($Image,$Dw=450,$Dh=450,$Type=1){ IF(!File_Exists($Image)){ Return False; } //如果需要生成縮略圖,則將原圖拷貝一下重新給$Image賦值 IF($Type!=1){ Copy($Image,Str_Replace(".","_x.",$Image)); $Image=Str_Replace(".","_x.",$Image); } //取得文件的類型,根據(jù)不同的類型建立不同的對(duì)象 $ImgInfo=GetImageSize($Image); Switch($ImgInfo[2]){ Case 1: $Img = @ImageCreateFromGIF($Image); Break; Case 2: $Img = @ImageCreateFromJPEG($Image); Break; Case 3: $Img = @ImageCreateFromPNG($Image); Break; } //如果對(duì)象沒(méi)有創(chuàng)建成功,則說(shuō)明非圖片文件 IF(Empty($Img)){ //如果是生成縮略圖的時(shí)候出錯(cuò),則需要?jiǎng)h掉已經(jīng)復(fù)制的文件 IF($Type!=1){Unlink($Image);} Return False; } //如果是執(zhí)行調(diào)整尺寸操作則 IF($Type==1){ $w=ImagesX($Img); $h=ImagesY($Img); $width = $w; $height = $h; IF($width>$Dw){ $Par=$Dw/$width; $width=$Dw; $height=$height*$Par; IF($height>$Dh){ $Par=$Dh/$height; $height=$Dh; $width=$width*$Par; } }ElseIF($height>$Dh){ $Par=$Dh/$height; $height=$Dh; $width=$width*$Par; IF($width>$Dw){ $Par=$Dw/$width; $width=$Dw; $height=$height*$Par; } }Else{ $width=$width; $height=$height; } $nImg = ImageCreateTrueColor($width,$height); //新建一個(gè)真彩色畫布 ImageCopyReSampled($nImg,$Img,0,0,0,0,$width,$height,$w,$h);//重采樣拷貝部分圖像并調(diào)整大小 ImageJpeg ($nImg,$Image); //以JPEG格式將圖像輸出到瀏覽器或文件 Return True; //如果是執(zhí)行生成縮略圖操作則 }Else{ $w=ImagesX($Img); $h=ImagesY($Img); $width = $w; $height = $h; $nImg = ImageCreateTrueColor($Dw,$Dh); IF($h/$w>$Dh/$Dw){ //高比較大 $width=$Dw; $height=$h*$Dw/$w; $IntNH=$height-$Dh; ImageCopyReSampled($nImg, $Img, 0, -$IntNH/1.8, 0, 0, $Dw, $height, $w, $h); }Else{ //寬比較大 $height=$Dh; $width=$w*$Dh/$h; $IntNW=$width-$Dw; ImageCopyReSampled($nImg, $Img, -$IntNW/1.8, 0, 0, 0, $width, $Dh, $w, $h); } ImageJpeg ($nImg,$Image); Return True; } } ?> <html><body> <form method="post" enctype="multipart/form-data" name="form1"> <table> <tr><td>上傳圖片</td></tr> <tr><td><input type="file" name="photo" size="20" /></td></tr> <tr><td><input type="submit" value="上傳"/></td></tr> </table> 允許上傳的文件類型為:<?=implode(', ',$phtypes)?></form> <?php if($_SERVER['REQUEST_METHOD']=='POST'){ if (!is_uploaded_file($_FILES["photo"][tmp_name])){ echo "圖片不存在"; exit(); } if(!is_dir('img')){//路徑若不存在則創(chuàng)建 mkdir('img'); } $upfile=$_FILES["photo"]; $pinfo=pathinfo($upfile["name"]); $name=$pinfo['basename'];//文件名 $tmp_name=$upfile["tmp_name"]; $file_type=$pinfo['extension'];//獲得文件類型 $showphpath=$path.$name; if(in_array($upfile["type"],$phtypes)){ echo "文件類型不符!"; exit(); } if(move_uploaded_file($tmp_name,$path.$name)){ echo "成功!"; Img($showphpath,100,800,2); } echo "<img src=\"".$showphpath."\" />"; } ?> </body> </html>
相關(guān)文章
php用數(shù)組返回?zé)o限分類的列表數(shù)據(jù)的代碼
php自定義函數(shù)之用數(shù)組返回?zé)o限分類的列表數(shù)據(jù),這樣的實(shí)現(xiàn)可以提高執(zhí)行的效率不要每次都從數(shù)據(jù)庫(kù)讀取數(shù)據(jù)。2010-08-08PHP讀取配置文件類實(shí)例(可讀取ini,yaml,xml等)
這篇文章主要介紹了PHP讀取配置文件類,可讀取ini,yaml,xml等配置文件,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-07-07PHP實(shí)現(xiàn)讀取Excel文件的記錄(二)
在前文中介紹的方法有些麻煩,因?yàn)楸仨氁虞d很多的文件。本文介紹的方法簡(jiǎn)單了很多,只需要加載兩個(gè)文件即可。需要的可以參考一下2022-03-03PHP laravel實(shí)現(xiàn)導(dǎo)出PDF功能
有時(shí)候我們會(huì)需要使用PHP導(dǎo)出pdf。這篇文章主要是記錄一下laravel實(shí)現(xiàn)導(dǎo)出PDF的兩種方式。文中的示例代碼講解詳細(xì),需要的可以參考一下2022-10-10PHP實(shí)現(xiàn)將HTML5中Canvas圖像保存到服務(wù)器的方法
這篇文章主要介紹了PHP實(shí)現(xiàn)將HTML5中Canvas圖像保存到服務(wù)器的方法,可實(shí)現(xiàn)將Canvas圖像保存到服務(wù)器的功能,是非常實(shí)用的技巧,需要的朋友可以參考下2014-11-11PHP統(tǒng)計(jì)目錄中文件以及目錄中目錄大小的方法
這篇文章主要介紹了PHP統(tǒng)計(jì)目錄中文件以及目錄中目錄大小的方法,涉及PHP針對(duì)文件及目錄的遍歷,讀取及運(yùn)算的相關(guān)技巧,需要的朋友可以參考下2016-01-01PHP計(jì)算2點(diǎn)經(jīng)緯度之間的距離代碼
以下是對(duì)PHP計(jì)算2點(diǎn)經(jīng)緯度之間的距離代碼進(jìn)行了分析介紹,需要的朋友可以過(guò)來(lái)參考下2013-08-08PHP網(wǎng)站基礎(chǔ)優(yōu)化方法小結(jié)
以下這些基礎(chǔ)技巧可以讓你的PHP網(wǎng)站運(yùn)行得更快一些。2008-09-09php 靜態(tài)屬性和靜態(tài)方法區(qū)別詳解
這篇文章主要介紹了php 靜態(tài)屬性和靜態(tài)方法區(qū)別詳解,需要的朋友可以參考下2017-04-04