0

我在此处输入链接描述中使用 Ajax Crop ,我想在脚本中添加水印。以下是我的脚本。

水印

$image_path = "watermark.png";

function watermark_image($oldimage_name, $new_image_name){
    global $image_path;
    list($owidth,$oheight) = getimagesize($oldimage_name);
    $width = 500; $height = 100;    
    $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;
}

上传和调整部分

function resizeThumb($arr){

    $date = md5(time());    
    $arr['temp_uploadfile'] = $arr['img_src'];
$arr['new_uploadfile'] = $arr['uploaddir'].strtolower($date).'.jpg';

    asidoImg($arr);
    exit;
}

我尝试添加

$arr = watermark_image($arr['temp_uploadfile'], $arr['uploaddir'].strtolower($date).'.jpg');

代替

$arr['new_uploadfile'] = $arr['uploaddir'].strtolower($date).'.jpg';

但这没有用。

有人可以帮助我吗?

下载文件测试

4

1 回答 1

0

事实证明该脚本使用 ASIDO,并且它具有内置的 WATERMARK TOOL。在 func.php 我做了以下。

function asidoImg2($arr){

    include('asido/class.asido.php');
    asido::driver('gd');

    $height     = $arr['height'];
    $width      = $arr['width'];
    $x          = $arr['x'];
    $y          = $arr['y'];                

    // process
    $i1 = asido::image($arr['temp_uploadfile'], $arr['new_uploadfile']);    
    // fit and add white frame                                      
    if($arr['thumb'] === true){
        Asido::Crop($i1, $x, $y, $width, $height);
    asido::watermark($i1, 'watermark.png', ASIDO_WATERMARK_MIDDLE_LEFT, ASIDO_WATERMARK_SCALABLE_ENABLED, 1);

    }
    else{
        Asido::Frame($i1, $width, $height, Asido::Color(255, 255, 255));            
    asido::watermark($i1, 'watermark.png', ASIDO_WATERMARK_MIDDLE_LEFT, ASIDO_WATERMARK_SCALABLE_ENABLED, 1);
    }

    // always convert to jpg    
    Asido::convert($i1, 'image/jpg');

    $i1->Save(ASIDO_OVERWRITE_ENABLED);
        $data = array(
        'photo'=> $arr['new_uploadfile']
      );
        // echo $user_id;
    // delete old file
    echo $data['photo'];    

}
于 2012-07-17T15:50:08.073 回答