niektore obrazky vytahujem priamo z databazy a potrebujem z nich vytvorit nahlad
Da sa to beztoho aby som niekam ukladal nahlady ale rovno zobrazil?
nasiel som imagecreatefromstring
Kód:
$im = imagecreatefromstring($obrazok[$num]);
$imgh=$imgw = $resize;
$thumb=ImageCreate($imgw,$imgh);
ImageCopyResized($thumb,$im,0,0,0,0,$imgw,$imgh,ImageSX($im),ImageSY($im));
$obrazok = ImagejpeG($thumb);
imagedestroy ($im);
imagedestroy ($thumb);