Ana Sayfa En Yeni 50 Kod En Popüler 50 Kod Sen de Yaz Bize Ulaşın
Sponsorlar
Programlama > PHP


Resim crop lama

İşinize yaramı bilmem ama çok sağlam çünkü kalite bozmadan resim croplamak için

<?php

$imgfile = "img.jpg";
$cropStartX = 300;
$cropStartY = 250;
$cropW = 200;
$cropH = 200;

$origimg = imagecreatefromjpeg($imgfile);
$cropimg = imagecreatetruecolor($cropW,$cropH);

list($width, $height) = getimagesize($imgfile);

imagecopyresized($cropimg, $origimg, 0, 0, $cropStartX, $cropStartY, $width, $height, $width, $height);

header("Content-type: image/jpeg");
imagejpeg($cropimg);

imagedestroy($cropimg);
imagedestroy($origimg);

?>

emrah ülker
emrah@planesoft.net
Ana Sayfa   Ana sayfam yap   Favorilerime ekle   Bize Ulaşın
© 2002 - 2010 Hazır Kod Programlama - Türkiye