<?php $obrazek = $_FILES['obrazek']; if($obrazek['type']=='image/jpeg') { $source = @imagecreatefromjpeg($obrazek[tmp_name]); } elseif($obrazek['type']=='image/png') { $source = @imagecreatefrompng($obrazek[tmp_name]); } elseif($obrazek['type']=='image/gif') { $source = @imagecreatefromgif($obrazek[tmp_name]); } if(imagesy($source)>imagesx($source)) { $new_height = 150; } else { $new_width = 150; } $dest = imagecreatetruecolor($new_width,$new_height); imagecopyresampled($dest,$source,0,0,0,0,$new_width,$new_height,imagesx($source),imagesy($source)); imagejpeg($dest,'../images/miniaturki/'.$id.'.jpg',99); imagedestroy($source); imagedestroy($dest); $sciezka = '../images/duze/'.$id.'.jpg'; ?>
o mało klientowi nie nagadałem że jest chyba głupi i żeby nie wmawiał że nie działa... a okazało się że nie działa tylko pod IE...
[html]Warning: imagesy(): supplied argument is not a valid Image resource in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 156
Warning: imagesx(): supplied argument is not a valid Image resource in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 156
Warning: imagesy(): supplied argument is not a valid Image resource in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 164
Warning: imagesx(): supplied argument is not a valid Image resource in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 164
Warning: Division by zero in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 164
Warning: imagecreatetruecolor(): Invalid image dimensions in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 166
Warning: imagesx(): supplied argument is not a valid Image resource in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 167
Warning: imagesy(): supplied argument is not a valid Image resource in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 167
Warning: imagecopyresampled(): supplied argument is not a valid Image resource in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 167
Warning: imagejpeg(): supplied argument is not a valid Image resource in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 168
Warning: imagedestroy(): supplied argument is not a valid Image resource in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 169
Warning: imagedestroy(): supplied argument is not a valid Image resource in /home/wm1/domains/wm.ultehost.net/public_html/zlecenia/vertigo/admin/index.php on line 170