PHP给图片加水印相对ASP来说,要简单多了,看下面代码:
/*****************************************************
参数说明:
$max_file_size : 上传文件大小限制, 单位BYTE
$destination_folder : 上传文件路径
$watermark : 是否附加水印(1为加水印,其他为不加水印);
使用说明:
1. 将PHP.INI文件里面的"extension=php_gd2.dll"一行前面的;号去掉,因为我们要用到GD库;
2. 将extension_dir =改为你的php_gd2.dll所在目录;
3. http://www.knowsky.com/php.asp;
****************************************************/
//上传文件类型列表
$uptypes=array(
'image/jpg',
'image/jpeg',
'image/png',
'image/pjpeg',
'image/gif',
'image/bmp',
'image/x-png'
);
$max_file_size=2000000; //上传文件大小限制, 单位BYTE
$destination_folder="uploadimg/"; //上传文件路径
$watermark=1; //是否附加水印(1为加水印,其他为不加水印);
$watertype=1; //水印类型(1为文字,2为图片)
$waterposition=1; //水印位置(1为左下角,2为右下角,3为左上角,4为右上角,5为居中);
$waterstring="http://www.xplore.cn/"; //水印字符串
$waterimg="xplore.gif"; //水印图片
$imgpreview=1; //是否生成预览图(1为生成,其他为不生成);
$imgpreviewsize=1/2; //缩略图比例
?>
/title>
ボディ
{
フォントサイズ: 9pt;
}
入力
{
背景色: #66CCFF;
境界線: 1px inset # CCCCCC;
}
-->
if ($_SERVER['REQUEST_METHOD'] == 'POST')
{
if (!is_uploaded_file($_FILES["upfile"][tmp_name]))
// ファイルかどうか存在します
{
echo "画像が存在しません!";
exit
}
$file = $_FILES["upfile"];
if($max_file_size < $file[ "size"])
// ファイル サイズを確認します
{
echo "ファイルが大きすぎます!"
exit
}
if(!in_array ($file["type "], $uptypes))
//ファイルの種類を確認します
{
echo "ファイルの種類が一致しません!".$file["type"]; > 終了;
}
if(!file_exists($destination_folder))
{
mkdir($destination_folder);
}
$filename=$file["tmp_name"];
$image_size = getimagesize($filename );
$pinfo=pathinfo($file["name"]);
$ftype=$pinfo['extension'];
$destination = $ destination_folder.time().".". $ftype;
if (file_exists($destination) && $overwrite != true)
{
echo "同じ名前のファイルが既に存在します"; 🎜> exit;
}
if( !move_uploaded_file ($filename, $destination))
{
echo "ファイルの移動エラー";
}
$ pinfo=pathinfo($destination);
$fname =$pinfo[basename];
echo "
アップロードされましたファイル名:
".$destination_folder.$ fname."";
echo " 幅: ".$image_size[0];
echo " 長さ: " .$image_size[1];
echo "< ;br> サイズ: ".$file["size"]." バイト";
if($watermark==1)
{
$iinfo=getimagesize($destination,$iinfo);
$nimage=imagecreatetruecolor($image_size[0],$image_size[1])
$white=imagecolorallocate($nimage,255,255,255); $black=imagecolorallocate($nimage,0,0,0 );
$red=imagecolorallocate($nimage,255,0,0)
imagefill($nimage,0,0,$white); 🎜> switch ($iinfo[2])
{
ケース 1:
$simage =imagecreatefromgif($destination);
ケース 2:
$simage =imagecreatefromjpeg ($目的地);
ブレーク;
ケース 3:
$simage =imagecreatefrompng($destination);
ケース 6:
$simage =imagecreatefromw bmp($destination);
デフォルト:
die("サポートされていないファイルの種類");
exit
imagecopy($nimage,$simage,0,0,0,0,$image_size[0] ,$image_size[1]); > imagefilledrectangle($nimage,1,$image_size[1]-15,80,$image_size[1],$white);
switch($watertype)
{
ケース 1: //透かしを追加画像
$simage1 =imagecreatefromgif("xplore.gif");
imagecopy($nimage,$simage1,0,0,0,0,85,15);
imagedestroy($ simage1); 🎜> $destination);ブレーク; 3:
imagepng($nimage , $destination);
ケース 6:
imagewbmp($nimage, $destination);
//imagejpeg($nimage, $destination);
}
//元のアップロードされたファイルを上書きします
🎜> imagedestroy($simage);
}
if($imgpreview==1)
{
echo "
画像プレビュー:
";
height=".($image_size[1]*$imgpreviewsize);"
echo " alt="画像プレビュー:rファイル名:".$destination."rアップロード時間:" />"
}
}
?>
;