Файл: photo/inc/128/jpeg.php
Строк: 17
<?
if (is_file(H."sys/photo/screens/128/$v[id].gif"))
{
echo "<img src='/sys/photo/screens/128/$v[id].gif' alt='scr...' /><br />n";
}
elseif (function_exists('imagecreatefromstring'))
{
$imgc=imagecreatefromstring(file_get_contents($file));
$img_x=imagesx($imgc);
$img_y=imagesy($imgc);
if ($img_x==$img_y)
{
$dstW=128; // ширина
$dstH=128; // высота
}
elseif ($img_x>$img_y)
{
$prop=$img_x/$img_y;
$dstW=128;
$dstH=ceil($dstW/$prop);
}
else
{
$prop=$img_y/$img_x;
$dstH=128;
$dstW=ceil($dstH/$prop);
}
$screen=imagecreatetruecolor($dstW, $dstH);
imagecopyresampled($screen, $imgc, 0, 0, 0, 0, $dstW, $dstH, $img_x, $img_y);
imagedestroy($imgc);
imagejpeg($screen,H."sys/photo/screens/128/$v[id].gif",100);
imagedestroy($screen);
echo "<img src='/sys/photo/screens/128/$v[id].gif' alt='scr...' />n";
}
?>