Create a free blog, web site, photo album, guestbook, earn money, share things with your friends!
Login | Sign Up 
V.E.

resim boyutlandırma...


// alt iki satırda dosyayı belirliyor be onu % kaç resize edicemiyi yazıoz.
$filename = "dene.jpg";
$percent = 0.5;

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

// ve seçilen yüzdelik(percent) ile yeni boyutlarımızı oluşturuyoz.
list($width, $height) = getimagesize($filename);
$newwidth = 180;
$newheight = 160;

// artık kaynağı yeni boyutları ile harmanladık.
$thumb = imagecreatetruecolor($newwidth, $newheight);
$source = imagecreatefromjpeg($filename);

// resim bu bölümde son halini yani yeni boyutlarını aldı
imagecopyresampled($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);

// ve dosyayı istenen % olarak kalite ile istenen adrese kaydettik
imagejpeg($thumb, "dene.jpg", 100);
?>





Date: 30 May 2007, Wednesday
Comments (0) | Add Comment



Comments (0)

Add a new comment:
Name:
E-Mail:
Your website (if you have):
Your Message:
Security Code:

Latest Entries

html kodları
1
yeni
resim boyutlandırma...
bye bye

Search