|
|
|
จะอัพรูปขึ้น server linux ยังไงอะคับ ผมจะอัพรูปขึ้น server linux แล้วก้อ resize image ยังไงอะคับ |
|
|
|
|
|
|
|
ตั้งค่าโฟร์เดอร์ที่เก็บไฟล์เป็น 777 ด้วยนะครับ เด๋วมะได้
if($_FILES["picProfile"]["name"]!=''){
$file_tmp = $_FILES['picProfile']['tmp_name'];
$file_nameSrc = $_FILES['picProfile']['name'];
$file_name = str_replace(" ","_",$file_nameSrc); //อันนี้ผมกันช่องว่าง ถ้ามีช่องว่างให้ใส่-แทน
$size=getimagesize($file_tmp);
$array_last=explode(".",$file_name);
$c=count($array_last)-1;
$lastname=strtolower($array_last[$c]);
###-------------------------------------------------------------------------------
if($lastname=='jpg' || $lanstname=='gif' || $lanstname=='png'){
// Check is Image
#-----Check images with and height -----#
if($lastname=='jpg'){
$image_orig = imagecreatefromjpeg($file_tmp);
}
if($lastname=='gif'){
$image_orig = imagecreatefromgif($file_tmp);
}
if($lastname=='png'){
$image_orig = imagecreatefrompng($file_tmp);
}
$image_width = imagesx($image_orig);
$image_height = imagesy($image_orig);
$FixWidth=500; // กำหนดความกว้างของภาพ
###----------------------------------
if($image_width>$FixWidth){// Check Image Width
//$Fiximg_width=$FixImageX; //*** Fix Width & Height (Auto calculate)
$size=getimagesize($file_tmp);
$height=round($FixWidth*$size[1]/$size[0]); //คำนวณความยาวจากความกว้าง
if($lastname=='jpg'){
$images_orig = imagecreatefromjpeg($file_tmp);
}
if($lastname=='gif'){
$images_orig = imagecreatefromgif($file_tmp);
}
if($lastname=='png'){
$images_orig = imagecreatefrompng($file_tmp);
}
$ImageX = imagesx($images_orig);
$ImageY = imagesy($images_orig);
$images_fin = imagecreatetruecolor($FixWidth, $height);
imagecopyresampled($images_fin, $images_orig, 0, 0, 0, 0, $FixWidth, $height, $ImageX, $ImageY);// ปรับขนาดรูปภาพ
if($lastname=='jpg'){
imagejpeg($images_fin,"path ที่จัดไฟล์".$file_name); // Coppy to Path
}
if($lastname=='gif'){
imagegif($images_fin,"path ที่จัดไฟล์".$file_name); // Coppy to Path
}
if($lastname=='png'){
imagepng($images_fin,"path ที่จัดไฟล์".$file_name); // Coppy to Path
}
imagedestroy($images_orig);
imagedestroy($images_fin);
}
|
|
|
|
|
Date :
2010-05-16 18:21:13 |
By :
arefooh |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับป๋ม.
|
|
|
|
|
Date :
2010-05-17 07:33:40 |
By :
momori-pan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|