|
|
|
ขอถาม เรื่องการ resize รูปภาพหนะครับ ผมเอา code จากบทเรียนไปรองทำพอรองกับเครื่องตัวเอง ได้ปกติ |
|
|
|
|
|
|
|
ผมเอา code จากบทเรียนไปรองทำพอรองกับเครื่องตัวเอง ได้ปกติ แต่พอเอาขึ้น server แล้วใช้ไม่ได้ครับ พอทราบไหมครับ
if (copy($file,$nametype)) {
$sql1 = "select max(no_file) as id_max from news_file where id_file ='$id';";
$result1 = mysql_query($sql1);
$row = mysql_num_rows($result1);
if ($row) {
$fetch = mysql_fetch_array($result1);
//print "ก่อน$fetch[id_max]";
$count = $fetch['id_max']+1;
//print "หลัง$count";
} else {
$count = 1;
}
$sql = "insert into news_file (`id_file`, `path_file`, `no_file`, `comment`)
values('$id','$name','$count','$textarea');";
$result = mysql_query($sql);
if ($result) {
print"<center>บันทึกเรียบร้อยแล้ว</center>";
}
} else {
print "ไม่สามารถบันทึกรูปได้";
}
//print "$type";
$images = "../images/$name";
$height=150;
$size=GetimageSize($images);
$width=round($height*$size[0]/$size[1]);
if ($type == "gif" or $type == "GIF") {
$images_orig = ImageCreateFromGIF($images);
} else if ($type == "jpg" or $type == "JPG"){
$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);
//$file_name = "../resize";
ImageJPEG($images_fin,$name);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
echo "<br><center><img src=\"$name\"></center>";
}
} else {
print "<center><font color =\"red\">ไฟล์ต้องมี นามสกุล Gif หรือ Jpg เท่านั้น</font></center><br>";
print "<center><input class=\"textbox\" type=\"submit\" name=\"Submit\" value=\"เมนูก่อนหน้า\"onClick=\"jascript:history.go(-1)\" style = \"cursor:hand;\"> "."</center>";
}
?>
Tag : - - - -
|
|
|
|
|
|
Date :
29 เม.ย. 2548 17:30:34 |
By :
เจ |
View :
2840 |
Reply :
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
chmod 777
|
|
|
|
|
Date :
30 เม.ย. 2548 16:01:35 |
By :
shakid |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ก็อยากรู้เหมือนกันค่ะ
|
|
|
|
|
Date :
5 ก.ค. 2550 10:33:38 |
By :
par |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่ค่อยจะรู้ที่มาที่ไปของตัวแปรหรอกนะ แต่
if ($type == "gif" or $type == "GIF") { เช็คจากไหน
ปกติแล้วเวลาจะเช็คนามสกุลไฟล์ผลใช้แบบนี้
$size=GetimageSize($images);
$size[0] = ความกว้าง
$size[1] = ความสูง
$size[2] = ประเภทภาพ
1 = .gif
2 = .jpg
3 = .png
.....และมีอีกผมก็จำไม่หมด
$size[3] = บอกทั้งกว้างและยาว ลองดูครับ
จากนั้นก็ตรวจสอบไฟล์ว่าเป็นสกุลอะไร(จาก $size[2])
แล้วจึงมา Create
เช่น if($size[2]==1) ImageCreateFromGif($images);
elseif($size[2]==2) ImageCreateFromJPEG($images);
เป็นต้น
ไม่รู้ว่าจะบอกถูกจุดหรือป่าวนะ
|
|
|
|
|
Date :
5 ก.ค. 2550 20:21:46 |
By :
benjo |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code
<?
$images = "mygirl.jpg";
$new_images = "MyResize/mygirl.jpg";
$width=200; //*** Fix Width & Heigh (Autu caculate) ***//
$size=GetimageSize($images);
$height=round($width*$size[1]/$size[0]);
$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,$new_images);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
?>
<b>Original Size</b><br>
<img src="<?=$images;?>">
<hr>
<b>New Resize</b><br>
<img src="<?=$new_images;?>">
|
|
|
|
|
Date :
2009-04-26 15:46:03 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|