
23-01-2012, 16:16
|
|
|
|
Adana Şubesi
Mesajlar: 1.000
Tecrübe Puanı: 2
Rep Puanı: 10
Rep Derecesi : 
|
|
PHP Resim crop lama
Kod:
<?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); ?>
____
|