|
|
|
รบกวนดู code rezise ให้ด้วยนะค่ะ ขอบคุณมากเลยค่ะ สองวันแล้วที่แก้ไม่ได้ค่ะ |
|
|
|
|
|
|
|
รบกวนช่วยดู code ให้ด้วยค่ะ
สองวันแล้ว แก้ไม่ได้ รู้สึกว่า ตรง imagerezised จะมีปัญหานะค่ะ พอ upload ขึ้นไปแล้ว รูปมันไม่ขึ้นนะค่ะ
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>Untitled Document</title>
</head>
<body>
<?
$photo=$_FILES['photo']['tmp_name'];
$photo_name=$_FILES['photo']['name'];
$photo_size=$_FILES['photo']['size'];
$photo_type=$_FILES['photo']['type'];
$detail=$_POST['detail'];
$id_title=$_POST['id_title'];
/*if (!$photo) {
echo "<h3>error :ไม่สามารถ upload รูปภาพได้ </h3>";
exit();
}*/
$ext=strtolower(end(explode('.',$photo_name)));
if($ext=="jpg" or $ext =="jpeg" or $ext=="png" or $ext=="gif") {
//เพิ่มข้อมุลลงในตาราง photo
include "connect.php";
$sql="insert into tb_photo values (null,'','$detail','$id_title')";
mysql_db_query($dbname,$sql);
//หา id_photo ที่มากที่สุดของ tb_photo
$sql="select max(id_photo) from tb_photo";
$result=mysql_db_query($dbname,$sql);
$r=mysql_fetch_array($result);
$id_max=$r[0];
$filename=$id_max.".".$ext;
copy($photo,"images_large/$filename");
if(ext=="jpg" or $ext=="jpeg"){
$ori_img=imagecreatefromjpeg($photo);
} else if ($ext =="png") {
$ori_img=imagecreatefrompng($photo);
} else if ($ext =="gif") {
$ori_img=imagecreatefromgif($photo);
}
$ori_size=getimagesize($photo);
$ori_w=$ori_size[0];
$ori_h=$ori_size[1];
if ($ori_w>=$ori_h) {
$new_w=100;
$new_h=round(($new_w/$ori_w)* $ori_h);
} else {
$new_h=100;
$new_w=round(($new_h/$ori_h) * $ori_w);
}
$new_img= imagecreatetruecolor($new_w, $new_h);
imagecopyresized($new_img, $ori_img, 0,0,0,0,$new_w, $new_h, $ori_w, $ori_h);
if ($ext=="jpg" or $ext =="jpeg") {
imagejpeg($new_img,"images_small/$filename");
} else if ($ext =="png") {
imagepng ($new_img,"images_small/$filename");
} else if($ext =="gif") {
imagegif ($new_img,"images_small/$filename");
}
imagedestroy($ori_img);
imagedestroy($new_img);
$sql="update tb_photo set name_photo='$filename' where id_photo='$id_max' ";
mysql_db_query($dbname,$sql);
echo "<h3>upload รูปภาพเรียบร้อยแล้ว</h3>";
echo "<a href='admin_photo.php?id_title=$id_title'> กลับหน้าหลัก</a>";
mysql_close();
} else {
echo "<h3>error : ไม่สามารถ upload รูปภาพได้ค่ะ </h3>";
}
?>
</body>
</html>
มันขึ้นว่า
Warning: imagecopyresized(): supplied argument is not a valid Image resource in C:\AppServ\www\photogallery\admin_photo_add.php on line 56
Warning: imagedestroy(): supplied argument is not a valid Image resource in C:\AppServ\www\photogallery\admin_photo_add.php on line 65
รบกวนด้วยนะค่ะ
Tag : PHP
|
|
|
|
|
|
Date :
2010-12-15 00:17:51 |
By :
noksawa |
View :
755 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ลองเอา code ผมไปดัดแปลงดูนะ คิดว่าคงทำมาจากหนังสือเล่มเดียวกัน แต่อันนี้ผมแก้มาเรียบร้อยแล้ว ปัจจุบันผมก็ใช้งานได้อยู่
*อย่าลืมสร้างโฟล์เดอร์ images_large กับ images_small ไว้เก็บภาพด้วยนะครับ
Code (PHP)
<?
$name=$_POST[name];
$ref_id_type=$_POST[ref_id_type];
$detail=$_POST[detail];
$price=$_POST[price];
$fileupload=$_FILES['fileupload']['tmp_name'];
$fileupload_name=$_FILES['fileupload']['name'];
$fileupload_size=$_FILES['fileupload']['size'];
$fileupload_type=$_FILES['fileupload']['type'];
if($name==""){
echo "<h3>ERROR : กรุณากรอกชื่อสินค้า</h3>";
exit();
}
else if($ref_id_type=="0"){
echo "<h3>ERROR :กรุณาเลือกประเภทสินค้า</h3>";
exit();
}
else if($detail==""){
echo "<h3>ERROR : กรุณากรอกรายละเอียด</h3>";
exit();
}
else if($price==""){
echo "<h3>ERROR : กรุณากรอกรายละเอียด</h3>";
exit();
}
include "connectprd.php";
$sql="insert into tb_product values(null,'$name','$ref_id_type','$detail','$price','')";
$result=mysql_db_query($dbname,$sql);
if($fileupload){
$array_last=explode(".",$fileupload_name);
$c=count($array_last)-1;
$lastname=strtolower($array_last[$c]);
if($lastname=="gif" or $lastname=="jpg" or $lastname=="jpeg"){
$sql2="select max(id_prd) from tb_product";
$result2=mysql_db_query($dbname,$sql2);
$row=mysql_fetch_row($result2);
$photoname=$row[0].".".$lastname;
copy($fileupload,"../images_large/$photoname");
if($lastname =="jpg" or $lastname =="jpeg"){
$ori_img = imagecreatefromjpeg($fileupload);
}else if ($lastname == "png"){
$ori_img = imagecreatefrompng($fileupload);
}else if ($lastname == "gif"){
$ori_img = imagecreatefromgif($fileupload);
}
$ori_size = getimagesize($fileupload);
$ori_w = $ori_size[0];
$ori_h = $ori_size[1];
if($ori_w>=$ori_h){
$new_w = 100;
$new_h = round(($new_w/$ori_w)*$ori_h);
}else{
$new_h = 100;
$new_w = round(($new_h/$ori_h)*$ori_w);
}
$new_img= imagecreatetruecolor($new_w, $new_h);
imagecopyresized($new_img, $ori_img,0,0,0,0,$new_w,$new_h,$ori_w,$ori_h);
if($lastname =="jpg" or $lastname =="jpeg"){
imagejpeg($new_img,"../images_small/$photoname");
}else if ($lastname =="png"){
imagepng($new_img,"../images_small/$photoname");
}else if ($lastname =="gif"){
imagegif($new_img,"../images_small/$photoname");
}
imagedestroy($ori_img);
imagedestroy($new_img);
$sql3="update tb_product set photo_prd='$photoname' where id_prd ='$row[0]' ";
$result3=mysql_db_query($dbname,$sql3);
}
unlink($fileupload);
}
echo "<h3>เพิ่มสินค้าเรียบร้อยแล้ว</h3>";
echo "[<a href=admin_product_add.php>กลับหน้าหลัก</a>]";
mysql_close();
?>
|
|
|
|
|
Date :
2010-12-15 00:52:21 |
By :
minamino |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|