|
|
|
resize image...อยากได้ function resize image อยากได้ function resize image |
|
|
|
|
|
|
|
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;?>">
https://www.thaicreate.com/php/php-resize-image.html
|
|
|
|
|
Date :
2009-04-28 12:14:49 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$new_img = imagecreatetruecolor($new_w,$new_h);
imagecopyresized($new_img,$ori_img,0,0,0,0,$new_w,$new_h,$ori_w,$ori_h);
?>
ถาม function ก็ตอบ function อิอิ
|
|
|
|
|
Date :
2009-04-28 12:17:11 |
By :
teez1232002 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอโทษนะคะ คือใช้โค้ทตามด้านบนดู รูปที่ขนาดไม่ใหญ่มาก มัน resize ให้คะ แต่ปัญหาคือ รูปที่มีขนาดใหญ่ มันแจ้ง error
Fatal error: Allowed memory size of 25165824 bytes exhausted (tried to allocate 7744 bytes) in E:\AppServ\www\upload\phpUploadResize.php on line 15
คำถามคือ ถ้ารูปใหญ่ไป โค้ทตามด้านบนใช้ไม่ได้หรอคะ ??? หรือว่าต้องเพิ่มเปลี่นยแปลงอะไรนิดหน่อยทำนองนั้นอะคะ
รบกวนด้วยจ้า :)
|
|
|
|
|
Date :
2011-12-30 16:06:42 |
By :
tananagum |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยู่ที่ setting ของ server ครับ ไปแก้ memory_limt ใน php.ini เอา
|
|
|
|
|
Date :
2011-12-30 16:31:35 |
By :
ikikkok |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|