|
|
|
resize image fix ความกว้าง ผมอัพรูปแล้ว ทำเป็นรูป thumbnail โดยที่จะฟิกความกว้าง แต่ไม่รู้วิธีทำครับ |
|
|
|
|
|
|
|
เวลาแสดงภาพ ก็กำหนด เฉพาะความกว้างอย่างเดียวได้ครับ ส่วนความสูงไม่ต้องสนใจ เพราะโปรแกรรมจะกำหนด ให้สมส่วนอยู่แล้วครับ
<img scr='address picture' width='...'>
ลองดูนะ
|
|
|
|
|
Date :
2009-03-10 18:39:59 |
By :
khunset |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?
$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;?>">
Ref : PHP Resize image
|
|
|
|
|
Date :
2009-03-10 19:07:54 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ Mr. Win มากเลย เดี๋ยวจะลองไปทำดูน่ะครับ
|
|
|
|
|
Date :
2009-03-11 10:48:08 |
By :
petch.it24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|