程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php創建高清縮略圖詳細使用方法

php創建高清縮略圖詳細使用方法

編輯:關於PHP編程

php教程創建高清縮略圖詳細使用方法

1.用imagecreatetruecolor和imagecopyresampled函數分別取代imagecreate和imagecopyresized
2.給imagejpeg的第三個參數帶上100(例:imagejpeg($ni,$tofile,100))

imagecreatetruecolor -- 新建一個真彩色圖像
說明
resource imagecreatetruecolor ( int x_size, int y_size )
imagecreatetruecolor() 返回一個圖像標識符,代表了一幅大小為 x_size 和 y_size 的黑色圖像

*/

header ("content-type: image/png");
$im = @imagecreatetruecolor (50, 100)
     or die ("cannot initialize new gd image stream");
$text_color = imagecolorallocate ($im, 233, 14, 91);
imagestring ($im, 1, 5, 5,  "a simple text string", $text_color);
imagepng ($im);
imagedestroy ($im);

/*


如果使用普通的imagecreate()函數將造成圖片質量失真的情況,從網上搜了一下解決辦法,方法是用imagecreateruecolor()函數替換imagecreate()函數。
*/

function createpreview($img,$name,$path,$maxwidth,$maxheight,$quality){//圖片,保存名稱,保存路徑,最大寬,最大高,質量
 $widthratio=0;
 $heightratio=0;
 $width=imagesx($img);
 $height=imagesy($img);
 //開始計算縮小比例
 if($width>$maxwidth||$height>$maxheight){
  if($width>$maxwidth){
   $widthratio=$maxwidth/$width;
  }
  if($height>$maxheight){
   $heightratio=$maxheight/$height;
  }
  if($widthratio>0&&$heightratio>0){
   if($widthratio<$heightratio){
    $ratio=$widthratio;
   }else{
    $ratio=$heightratio;
   }
  }elseif($widthratio>0){
   $ratio=$widthratio;
  }elseif($heightratio>0){
   $ratio=$heightratio;
  }
  //根據得出的比例,重新計算縮略圖的寬和高
  $newwidth=$ratio*$width;
  $newheight=$ratio*$height;
  $newimg=imagecreatetruecolor($newwidth,$newheight); // 創建目標圖
  imagecopyresized($newimg,$img,0,0,0,0,$newwidth,$newheight,$width,$height);
  imagejpeg($newimg,$path."s_".$name,$quality);
  imagedestroy($newimg);
 }else{
  imagejpeg($img,$path."s_".$name,$quality);
 }
}
/*

imagecopyresamples() ,其像素插值算法得到的圖像邊緣比較平滑.質量較好(但該函數的速度比 imagecopyresized() 慢).

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved