|
|
|
เราจะกำหนดเงื่อนไขยังไง ถ้ารูปที่มีขนาดน้อยกว่า 50 KB ให้ไม่ต้อง resize นะคะมือใหม่หัดเขียน |
|
|
|
|
|
|
|
เราจะกำหนดเงื่อนไขยังไง ถ้ารูปที่มีขนาดน้อยกว่า 50 kb ให้ไม่ต้อง resize นะคะ
Code (PHP)
<?php
$sess=66666;
$images = $_FILES["photoimg"]["tmp_name"];
$new_images = "$sess.gif";
$width=200; //*** Fix Width & Heigh (Autu caculate) ***//
$size=GetimageSize($images);
$height=round($width*$size[1]/$size[0]);
if($size[2] == 1) {
$images_orig = imagecreatefromgif($images);
} else if($size[2] == 2) {
$images_orig = imagecreatefromjpeg($images);
}else if($size[2] == 3) {
$images_orig = imagecreatefrompng($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,"images/".$new_images);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
?>
Tag : PHP
|
|
|
|
|
|
Date :
2013-07-03 20:20:36 |
By :
gdes |
View :
816 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
if((float)($_FILES["photoimg"]["size"] / 1024) > 50)
{
โค๊ดในการ resize
}
|
|
|
|
|
Date :
2013-07-03 23:28:41 |
By :
PlaKriM |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-07-04 05:39:50 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|