![]() |
Bir resmin istenilen boyutlarda gösterilmesi //Resim boyutları tanımlanıyor. $maxWidth=100; $maxHeight=80; $imagename="images/image_13_1.jpg"; // Orjinal resmin boyutları bulunuyor. list($width, $height) = getimagesize($imagename); // Oranlar bulunuyor. $xRatio = $maxWidth / $width; $yRatio = $maxHeight / $height; // Orjinal resim ile görüntülenmek istenilen resim boyutları arasında dönüşüm yapılıyor. if ( ($width <= $maxWidth) && ($height <= $maxHeight) ) { $newWidth = $width; $newHeight = $height; } else if (($xRatio * $height) < $maxHeight) { $newHeight = ceil($xRatio * $height); $newWidth = $maxWidth; } else { $newWidth = ceil($yRatio * $width); $newHeight = $maxHeight; } // İstenilen boyuttaki resim gösteriliyor. echo "<img src='".$imagename."' width='$newWidth' height='$newHeight'>"; ?> |
Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 07:30. |
Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Friendly URLs by vBSEO
Copyright ©2004 - 2025 IRCForumlari.Net Sparhawk