Programalama > PHP


Ort. 0
Puan ver:
public function resizeimage($img, $by, $quality)
{
    $original = imagecreatefromjpeg("$img") or die("Hata original resim aç&yacute;lam&yacute;yor.(<em>$imgPath/$img</em>)");
    list($width, $height, $type, $attr) = getimagesize("$img");
    $newWidth = ($width/$by);
    $newHeight = ($height/$by);
    $tempImg = imagecreatetruecolor($newWidth, $newHeight) or die("temp img olu&thorn;turulam&yacute;yor.");
    imagecopyresized($tempImg, $original, 0, 0, 0, 0, $newWidth, $newHeight, $width, $height) or die("copya boyutland&yacute;r&yacute;lamad&yacute;.");
    imagejpeg($tempImg, "uploads/resize/$img", $quality) or die("Kaydedilemedi.");
    imagedestroy($original);
    imagedestroy($tempImg);
    return true;
}

toygar dündaralp tdundaralp@gmail.com
bahçivan ibrahim sitesi


Yorumlar                 Yorum Yaz
Bu hazır kod'a ilk yorumu siz yapın!
KATEGORİLER
ASP - 240
ASP.NET - 24
C# - 75
C++ - 174
CGI - 8
DELPHI - 247
FLASH - 49
HTML - 536
PASCAL - 246
PERL - 11
PHP - 160
WML - 9
XML - 2
Copyright © 2002 - 2024 Hazır Kod - Tüm Hakları Saklıdır.
Siteden yararlanırken gizlilik ilkelerini okumanızı tavsiye ederiz.
hazirkod.com bir İSOBİL projesidir.