php 여러 장의 사진 업로드 와 워 터 마크 기법 실현
<?php
function imageWaterMark($groundImage,$waterPos=0,$waterImage="",$waterText="",$textFont=5,$textColor="#FF0000")
{
$isWaterImage = FALSE;
$formatMsg = " , GIF、JPG、PNG 。";
//
if(!empty($waterImage) && file_exists($waterImage))
{
$isWaterImage = TRUE;
$water_info = getimagesize($waterImage); //
$water_w = $water_info[0];//
$water_h = $water_info[1];//
switch($water_info[2])//
{
case 1:$water_im = imagecreatefromgif($waterImage);break; // PHP
case 2:$water_im = imagecreatefromjpeg($waterImage);break; // PHP
case 3:$water_im = imagecreatefrompng($waterImage);break; // PHP
default:die($formatMsg);
}
}
//
if(!empty($groundImage) && file_exists($groundImage))
{
$ground_info = getimagesize($groundImage);
$ground_w = $ground_info[0];//
$ground_h = $ground_info[1];//
switch($ground_info[2])//
{
case 1:$ground_im = imagecreatefromgif($groundImage);break;
case 2:$ground_im = imagecreatefromjpeg($groundImage);break;
case 3:$ground_im = imagecreatefrompng($groundImage);break;
default:die($formatMsg);
}
}
else
{
die(" !");
}
//
if($isWaterImage)//
{
$w = $water_w;
$h = $water_h;
$label = " ";
}
else//
{
$temp = imagettfbbox(ceil($textFont*2.5),0,"c:/windows/fonts/stcaiyun.ttf",$waterText);// TrueType
$w = $temp[2] - $temp[6];
$h = $temp[3] - $temp[7];
unset($temp);
$label = " ";
}
if( ($ground_w<$w) || ($ground_h<$h) )
{
echo " ".$label." , !";
return;
}
switch($waterPos)
{
case 0://
$posX = rand(0,($ground_w - $w));
$posY = rand(0,($ground_h - $h));
break;
case 1://1
$posX = 0;
$posY = 0;
break;
case 2://2
$posX = ($ground_w - $w) / 2;
$posY = 0;
break;
case 3://3
$posX = $ground_w - $w;
$posY = 0;
break;
case 4://4
$posX = 0;
$posY = ($ground_h - $h) / 2;
break;
case 5://5
$posX = ($ground_w - $w) / 2;
$posY = ($ground_h - $h) / 2;
break;
case 6://6
$posX = $ground_w - $w;
$posY = ($ground_h - $h) / 2;
break;
case 7://7
$posX = 0;
$posY = $ground_h - $h;
break;
case 8://8
$posX = ($ground_w - $w) / 2;
$posY = $ground_h - $h;
break;
case 9://9
$posX = $ground_w - $w;
$posY = $ground_h - $h;
break;
default://
$posX = rand(0,($ground_w - $w));
$posY = rand(0,($ground_h - $h));
break;
}
//
imagealphablending($ground_im, true);
if($isWaterImage)//
{
imagecopy($ground_im, $water_im, $posX, $posY, 0, 0, $water_w,$water_h);//
}
else//
{
if( !empty($textColor) && (strlen($textColor)==7) )
{
$R = hexdec(substr($textColor,1,2));
$G = hexdec(substr($textColor,3,2));
$B = hexdec(substr($textColor,5));
}
else
{
die(" !");
}
imagestring ( $ground_im, $textFont, $posX, $posY, $waterText, imagecolorallocate($ground_im, $R, $G, $B));
}
//
@unlink($groundImage);
switch($ground_info[2])//
{
case 1:imagegif($ground_im,$groundImage);break; // gif
case 2:imagejpeg($ground_im,$groundImage);break; // jpeg
case 3:imagepng($ground_im,$groundImage);break; // png
default:die($errorMsg);
}
//
if(isset($water_info)) unset($water_info);
if(isset($water_im)) imagedestroy($water_im);
unset($ground_info);
imagedestroy($ground_im);
}
?>
<?php
for ($i=0;$i<count($_FILES['userfile']['tmp_name']);$i++)
{
$upfile="./img/".($i+1).".png";//
if(move_uploaded_file($_FILES['userfile']['tmp_name'][$i],$upfile)){
imageWaterMark($upfile,9,"./shuiyin.png","Made By Chenduan",5,"#FF0000");
/*
* : ( )
* imageWaterMark($groundImage,$waterPos=0,$waterImage="",$waterText="",$textFont=5,$textColor="#FF0000")
* :
* $groundImage , , GIF,JPG,PNG ;
* $waterPos , 10 ,0 ;
* 1 ,2 ,3 ;
* 4 ,5 ,6 ;
* 7 ,8 ,9 ;
* $waterImage , , GIF,JPG,PNG ;
* $waterText , , ASCII , ;
* $textFont , 1、2、3、4 5, 5;
* $textColor , , #FF0000( );
*/
echo "<img src=\"".$upfile."\" border=\"0\">";
echo " ".($i+1)." <br>";
}
else{
echo " ".($i+1)." <br>";
}
}
?>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Laravel - 변환된 유효성 검사 규칙으로 API 요청 제공동적 콘텐츠를 위해 API를 통해 Laravel CMS에 연결하는 모바일 앱(또는 웹사이트) 구축을 고려하십시오. 이제 앱은 CMS에서 번역된 콘텐츠를 받을 것으로 예상되는 다국어 앱이 될 수 있습니다. 일반적으로 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.