pp 문자 워 터 마크 와 pp 이미지 워 터 마크 구현 코드(두 가지 워 터 마크 방법)
텍스트 워 터 마크 는 그림 에 문 자 를 추가 하고 gd 라 이브 러 리 의 imagefttext 방법 을 사용 하 며 글꼴 파일 이 필요 합 니 다.효과 도 는 다음 과 같다.
구현 코드 는 다음 과 같 습 니 다:
$dst_path = 'dst.jpg';
//
$dst = imagecreatefromstring(file_get_contents($dst_path));
//
$font = './simsun.ttc';//
$black = imagecolorallocate($dst, 0x00, 0x00, 0x00);//
imagefttext($dst, 13, 0, 20, 20, $black, $font, ' ');
//
list($dst_w, $dst_h, $dst_type) = getimagesize($dst_path);
switch ($dst_type) {
case 1://GIF
header('Content-Type: image/gif');
imagegif($dst);
break;
case 2://JPG
header('Content-Type: image/jpeg');
imagejpeg($dst);
break;
case 3://PNG
header('Content-Type: image/png');
imagepng($dst);
break;
default:
break;
}
imagedestroy($dst);
사진 인쇄그림 워 터 마크 는 한 장의 그림 을 다른 그림 에 추가 하 는 것 으로 주로 gd 라 이브 러 리 의 imagecopy 와 imagecopy merge 를 사용한다.효과 도 는 다음 과 같다.
구현 코드 는 다음 과 같 습 니 다:
$dst_path = 'dst.jpg';
$src_path = 'src.jpg';
//
$dst = imagecreatefromstring(file_get_contents($dst_path));
$src = imagecreatefromstring(file_get_contents($src_path));
//
list($src_w, $src_h) = getimagesize($src_path);
// , 50 ,
imagecopymerge($dst, $src, 10, 10, 0, 0, $src_w, $src_h, 50);
// , imagecopy
//imagecopy($dst, $src, 10, 10, 0, 0, $src_w, $src_h);
//
list($dst_w, $dst_h, $dst_type) = getimagesize($dst_path);
switch ($dst_type) {
case 1://GIF
header('Content-Type: image/gif');
imagegif($dst);
break;
case 2://JPG
header('Content-Type: image/jpeg');
imagejpeg($dst);
break;
case 3://PNG
header('Content-Type: image/png');
imagepng($dst);
break;
default:
break;
}
imagedestroy($dst);
imagedestroy($src);