function zdjecia($zdjecie, $ogl_id, $i){ $source = imagecreatefromjpeg("../o_images/".$ogl_id."_".$i.".jpg"); $new_height = 400; $dest = imagecreatetruecolor($new_width,$new_height); imagecopyresampled($dest,$source,0,0,0,0,$new_width,$new_height,imagesx($source),imagesy($source)); imagejpeg($dest,"../o_images/".$ogl_id."_".$i.".jpg",0); imagedestroy($source); imagedestroy($dest); }
Jednak jak ładuje foto w PNG to nie działą ;/ macie jakieś pomyśly innego zastosowania tak aby działały inne formaty niż jpg ?