Autor Zpráva
malek
Profil
ako pomocou php zistim rozmery obrazku? dakujem
Ján Kobezda
Profil
http://sk2.php.net/manual/en/function.getimagesize.php
http://sk2.php.net/manual/en/function.imagesx.php
http://sk2.php.net/manual/en/function.imagesy.php
malek
Profil
akurat som to nasiel, ale dik. takto mi to funguje


$rozmer = getimagesize("test.jpg");
$type = $rozmer['mime'];
$width = $rozmer[0];
$height = $rozmer[1];
malek
Profil
akurat som to nasiel, ale dik. takto mi to funguje


$rozmer = getimagesize("test.jpg");
$type = $rozmer['mime'];
$width = $rozmer[0];
$height = $rozmer[1];
Toto téma je uzamčeno. Odpověď nelze zaslat.

0