Heim  >  Artikel  >  Backend-Entwicklung  >  php gd搴撳嚱鏁扮敓鎴愰珮娓呯缉鐣ュ浘绋嬪簭_PHP鏁欑▼ | 甯涔嬪

php gd搴撳嚱鏁扮敓鎴愰珮娓呯缉鐣ュ浘绋嬪簭_PHP鏁欑▼ | 甯涔嬪

WBOY
WBOYOriginal
2016-07-13 10:45:561199Durchsuche

gd搴撴槸php鏁欑▼涓竴涓鐞嗗浘鍍忕殑涓撶敤搴擄紝浠栧彲浠ユ柟渚垮揩鎹风殑澶勭悊澶у鏁版嵁澶勭悊锛屽畠鎻愪緵浜嗗ぇ閲忕殑鍥剧墖澶勭悊鍑芥暟锛屼笅闈㈡垜浠氨鍒╃敤gd搴撶殑鍑芥暟鏉ョ敓鎴愮缉鐣ュ浘銆?br /> 娴嬭瘯浠g爜

 

include('resizeimage.php');
if(!empty($_post)){
echo($filename.".jpg?cache=".rand(0,999999));
}
?>



resizeimage.php 鏂囦欢

$filename="image.thumb";
// 鐢熸垚鍥剧墖鐨勫搴?
$resizewidth=400;
// 鐢熸垚鍥剧墖鐨勯珮搴?
$resizeheight=400;

function resizeimage($im,$maxwidth,$maxheight,$name){
$width = imagesx($im);
$height = imagesy($im);
if(($maxwidth && $width > $maxwidth) || ($maxheight && $height > $maxheight)){
if($maxwidth && $width > $maxwidth){
$widthratio = $maxwidth/$width;
$resizewidth=true;
}
if($maxheight && $height > $maxheight){
$heightratio = $maxheight/$height;
$resizeheight=true;
}
if($resizewidth && $resizeheight){
if($widthratio $ratio = $widthratio;
}else{
$ratio = $heightratio;
}
}elseif($resizewidth){
$ratio = $widthratio;
}elseif($resizeheight){
$ratio = $heightratio;
}
$newwidth = $width * $ratio;
$newheight = $height * $ratio;
if(function_exists("imagecopyresampled")){
$newim = imagecreatetruecolor($newwidth, $newheight);
imagecopyresampled($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
}else{
$newim = imagecreate($newwidth, $newheight);
imagecopyresized($newim, $im, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
}
imagejpeg ($newim,$name . ".jpg");
imagedestroy ($newim);
}else{
imagejpeg ($im,$name . ".jpg");
}
}

if($_files['image']['size']){
if($_files['image']['type'] == "image/pjpeg"){
$im = imagecreatefromjpeg($_files['image']['tmp_name']);
}elseif($_files['image']['type'] == "image/x-png"){
$im = imagecreatefrompng($_files['image']['tmp_name']);
}elseif($_files['image']['type'] == "image/gif"){
$im = imagecreatefromgif($_files['image']['tmp_name']);
}
if($im){
if(file_exists("$filename.jpg")){
unlink("$filename.jpg");
}
resizeimage($im,$resizewidth,$resizeheight,$filename);
imagedestroy ($im);
}
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/632985.htmlTechArticlegd搴撴槸php鏁欑▼涓竴涓鐞嗗浘鍍忕殑涓撶敤搴擄紝浠栧彲浠ユ柟渚垮揩鎹风殑澶勭悊澶у鏁版嵁澶勭悊锛屽畠鎻愪緵浜嗗ぇ閲忕殑鍥剧墖澶勭悊鍑芥暟锛屼笅闈㈡垜浠氨鍒╃敤gd搴撶殑鍑芥暟鏉?..
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn