 Ibolac
                
                                #php #mysql #wordpress
                Kullanıcı
                    Ibolac
                
                                #php #mysql #wordpress
                Kullanıcı
                
             
            
                - 
                    Üyelik
                    13.11.2012
                
- 
                    Yaş/Cinsiyet
                    34 / E
                
- 
                    Meslek
                    Öğrenci
                
- 
                    Konum
                    Eskişehir
                
                - 
                    Ad Soyad
                    ** **
                
- 
                    Mesajlar
                    294
                
- 
                    Beğeniler
                    46 / 49
                
- 
                    Ticaret
                    25, (%96)
                
 
                Aşağıdaki kod ile resim üstüne logo ekleyebiliyorum ama, eklediğim logo beyaz arkaplan ile çıkıyor. Hatam nerde acilen yardım bekliyorum.
function watermark_image($oldimage_name, $new_image_name){
    global $image_path;
    list($owidth,$oheight) = getimagesize($oldimage_name);
    $width = $height = 300;    
    $im = imagecreatetruecolor($width, $height);
    $img_src = imagecreatefromjpeg($oldimage_name);
    imagecopyresampled($im, $img_src, 0, 0, 0, 0, $width, $height, $owidth, $oheight);
    $watermark = imagecreatefrompng($image_path);
    list($w_width, $w_height) = getimagesize($image_path);        
    $pos_x = $width - $w_width; 
    $pos_y = $height - $w_height;
    imagecopy($im, $watermark, $pos_x, $pos_y, 0, 0, $w_width, $w_height);
    imagejpeg($im, $new_image_name, 100);
    imagedestroy($im);
    unlink($oldimage_name);
    return true;
}