15 Ocak 2015, 07:03 | #1 | |
Çevrimdışı
Kullanıcıların profil bilgileri misafirlere kapatılmıştır.
IF Ticaret Sayısı: (0) | 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'>"; ?>
__________________ | |
|
Etiketler |
bîr, boyutlarda, gösterilmesi, istenilen, resmin |
Konuyu Toplam 1 Üye okuyor. (0 Kayıtlı üye ve 1 Misafir) | |
| |
Benzer Konular | ||||
Konu | Konuyu Başlatan | Forum | Cevaplar | Son Mesaj |
İzohips Haritalarında Yer Şekillerinin Gösterilmesi | Elysian | Genel Coğrafya | 0 | 07 Mayıs 2014 10:39 |
Kesirlerin Sayı Doğrultusunda Gösterilmesi | Liaaa | Matematik | 0 | 14 Mayıs 2012 02:11 |