Do tohoto blogu prikaldam ako som spravil auto resize obrazkov na male a velke
ale to uz si upravite sami :)
$pic = @imagecreatefromjpeg($uploadfile) or die ("Neda sa najst obrazok!");
if ($pic) { // ak najde povodny obrazok
$width=imagesx($pic);
$height=imagesy($pic);
if ($width>$height){
$twidth = 150;
$theight = $twidth * $height / $width;
} else {
$theight = 150;
$twidth = $theight * $width / $height;
}
$thumb = @imagecreatetruecolor ($twidth, $theight) or die ("Nemožno vytvorit maly obrazok!");
imagecopyresized($thumb, $pic, 0, 0, 0, 0,
$twidth, $theight, $width, $height);
ImageJPEG($thumb,"/www/fotogaleria2/upload/upload/male/".$_FILES[’userfile’][’name’]."",85);
ImageDestroy($pic);
ImageDestroy($thumb);
}
Ako na upload obrazkov (Pokračovanie)
04.09.2005 17:35:12

Komentáre