Kral-Forum - En Büyük Paylaşım Platformu
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Kral-Forum - En Büyük Paylaşım Platformu

Alemin En Kral Paylaşım Platform Sitesi
 
AnasayfaPortalLatest imagesKayıt OlGiriş yapsitemiekle

 

 Php'de Resim Küçültme

Aşağa gitmek 
YazarMesaj
By LaZoLi53
Administratör
By LaZoLi53


Erkek Mesaj Sayısı : 152
Nerden : mars\'dan
İş/Hobiler : pc,hacked
Kayıt tarihi : 18/02/08

By Poyraz
masterhack:
Php'de Resim Küçültme Left_bar_bleue0/0Php'de Resim Küçültme Empty_bar_bleue  (0/0)

Php'de Resim Küçültme Empty
MesajKonu: Php'de Resim Küçültme   Php'de Resim Küçültme Icon_minitimeCuma Şub. 29, 2008 10:37 pm

Aşağıda oluşturulmuş class' ı kullanarak sitenizde kullandığınız resimleri optimize ederek gösterebilirsiniz.


<?
class yThumb {

// find extension of file
function find_extension($file) {
$array = explode('.',$file);
$key = count($array) -1;
$ext = $array[$key];
return $ext;
}

function thumb($image,$w,$h) {
if($this->find_extension($image) == 'jpg') $image_data = imagecreatefromjpeg($image);
if($this->find_extension($image) == 'gif') $image_data = imagecreatefromgif ($image);
if($this->find_extension($image) == 'png') $image_data = imagecreatefrompng ($image);

// Original width && height
$width = imagesx($image_data);
$height = imagesy($image_data);

// Control width && and height
if(@$w > 800 || @$h > 800) {
$w= $width; $h= $height;
}

if(@empty($w)) $w = 140;
if(@empty($h)) $h = 100;

$new = imagecreatetruecolor($w, $h);
imagecopyresampled($new, $image_data, 0, 0, 0, 0, $w, $h, $width, $height);

// Finally, output..
if($this->find_extension($image) == 'jpg') $image_data = imagejpeg($new);
if($this->find_extension($image) == 'gif') $image_data = imagegif ($new);
if($this->find_extension($image) == 'png') $image_data = imagepng ($new);

// Flush memory
imagedestroy($image_data);
imagedestroy($new);
}

}

$a = new yThumb();
$a->thumb("resim.jpg","998","584");


?>
Sayfa başına dön Aşağa gitmek
https://kral-forum.catsboard.com
 
Php'de Resim Küçültme
Sayfa başına dön 
1 sayfadaki 1 sayfası
 Similar topics
-

Bu forumun müsaadesi var:Bu forumdaki mesajlara cevap veremezsiniz
Kral-Forum - En Büyük Paylaşım Platformu :: Web Tabanlı Scriptler :: Asp & Php & Html-
Buraya geçin: