|
|
|
ช่วยด้วยครับ ผมใส่โค้ดแลล้วต้องกรให้มัน upload รูปอ่าครับ แล้วมัน Error อ่าครับ |
|
|
|
|
|
|
|
Code ครับ
Code (PHP)
<html>
<body>
<?
if(trim($_FILES["file"]["tmp_name"]) != ""){
$image = $_FILES["file"]["tmp_name"];
$new_image = "New_".$_FILES["file"]["tmp_name"];
copy($_FILES["file"]["tmp_name"],"MyResize/".$_FILES["file"]["name"]);
$width = 100;
$size = GetimageSize($image);
$height = round($width*$size[1]/$size[0]);
$image_orig = ImageCreateFromJPEG($image);
$photoX = ImageX($image_orig);
$photoY = ImageY($image_orig);
$image_fin = ImageCreateTrueColor($width,$height);
ImageCopyResampled($image_fin, $image_orig, 0,0,0,0, $width+1,$height+1,$photoX,$photoY);
ImageJPEG($image_fin,"MyResize/".$new_image);
ImageDestroy($image_orig);
ImageDestroy($image_fin);
}
?>
<b> Original Size </b><br>
<img src="<?="MyResize/".$_FILES["file"]["name"];?>">
<hr>
<b> New Resize </b><br>
<img src="<?="MyResize/".$new_image;?>">
</body>
</html>
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2011-02-22 17:09:10 |
By :
zimmpooh |
View :
779 |
Reply :
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
รูปครับ
|
|
|
|
|
Date :
2011-02-22 17:13:13 |
By :
zimmpooh |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ยังไม่ได้เลยอ่าครับบบบ
|
|
|
|
|
Date :
2011-02-23 21:46:29 |
By :
zimmpooh |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ใน folder test มี folder myresize หรือยังครับ
|
|
|
|
|
Date :
2011-02-23 23:31:06 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ได้อันนึงแล้วครับ แต่ว่าตอน error อันล่างอ่าครับ ทำไงอ่าครับ
Fatal error: Call to undefined function ImageX() in C:\AppServ\www\test\page2.php on line 12
error นี้อ่าครับ
|
|
|
|
|
Date :
2011-02-24 15:25:07 |
By :
zimmpooh |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองลง โค้ด html ในหน้าฟอร์ฺมให้ดูหน่อยครับ
ในส่วนของ <form > มันต้องมี encrypt ด้วยครับ
|
|
|
|
|
Date :
2011-02-24 15:28:01 |
By :
Chifonz |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ยังไม่ได้อยู่ดีอ่าครับ
|
|
|
|
|
Date :
2011-02-24 17:10:54 |
By :
zimmpooh |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมทำไว้ 2 หน้านะครับ เดี๋ยวเอาหน้ารกให้ดูนะครับ
Code (PHP)
<html>
<body>
<form action="page2.php" method="post" enctype="multipart/form-data" name="form1">
<table width="343" border="1">
<tr>
<td>
UPLOAD :
</td>
<td>
<input type="file" name="file">
</td>
</tr>
<tr>
<td> </td>
<td><input type="submit" name="submit" value="Submit"></td>
</tr>
</table>
</form>
</body>
</html>
|
|
|
|
|
Date :
2011-02-24 17:11:29 |
By :
zimmpooh |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมติด error ตัวเดิมเลยนะครับ
ตัวนี้นะครับ Fatal error: Call to undefined function ImageX() in C:\AppServ\www\test\page2.php on line 13
|
|
|
|
|
Date :
2011-02-24 17:12:22 |
By :
zimmpooh |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|