|
|
|
Code นี้ไม่ฟ้อง error แต่ภาพไม่ขึ้น server ... Uploads รูปสำเร็จแล้วครับ ... Upload รูปภาพด้วยการ Resize |
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>Upload รูปภาพด้วยการ Resize</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874">
</head>
<body>
<?
if($file=="")
{
?>
<form name="form1" enctype="multipart/form-data" method="post" action="">
เลือกรูปภาพ
<input type="file" name="file">
<input type="submit" name="Submit" value="Upload">
</form>
<?
}
else
{
$images = $file];
//กำหนดความสูงของรูปใหม่
$height=400;
$size=GetimageSize($images);
$width=round($height*$size[0]/$size[1]);
$images_orig = ImageCreateFromJPEG($images);
$photoX = ImagesX($images_orig);
$photoY = ImagesY($images_orig);
$images_fin = ImageCreateTrueColor($width, $height);
ImageCopyResampled($images_fin, $images_orig, 0, 0, 0, 0, $width+1, $height+1, $photoX, $photoY);
ImageJPEG($images_fin,"jen.jpg");
ImageDestroy($images_orig);
ImageDestroy($images_fin);
echo "Uploads รูปสำเร็จแล้วครับ<br>";
}
?>
</body>
</html>
Tag : - - - -
|
|
|
|
|
|
Date :
2010-01-07 22:13:05 |
By :
nongjen |
View :
1225 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|