ここにリンクの説明を入力してAjaxCropを使用していますが、スクリプトに透かしを追加したいと思います。以下は私のスクリプトです。
透かし
$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';
しかし、これはうまくいきませんでした。
誰かが私を助けてもらえますか?