Programalama > PHP

Etiketler: deforme, etmeden, resize

Ort. 0
Puan ver:
<?php
/* Aşşağıdaki kod ile istenilen resim dosyazını deforme etmeden küçültebiliriz  */
// resim dosyası gir.
$image = "";

define("VERTICAL", 1);
define("HORIZONTAL", 2);

function imageflip($image, $mode) {
       $w = imagesx($image);
       $h = imagesy($image);
       $flipped = imagecreate($w, $h);
       if ($mode & VERTICAL) {
               for ($y = 0; $y < $h; $y++) {
                       imagecopy($flipped, $image, 0, $y, 0, $h - $y - 1, $w, 1);
               }
       }
       if ($mode & HORIZONTAL) {
               for ($x = 0; $x < $w; $x++) {
                       imagecopy($flipped, $image, $x, 0, $w - $x - 1, 0, 1, $h);
               }
       }
       return $flipped;
}
?>

emrah ülker
emrah@planesoft.net


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.