设为首页收藏本站language 语言切换
查看: 1636|回复: 0
收起左侧

PHP应用实例:实现给上传图片加水印图案

[复制链接]
发表于 2010-2-24 13:26:06 | 显示全部楼层 |阅读模式
<p >用PHP给上传图片加水印的程序是通过判断文件类型建立图形,然后把其复制到原建立的图形上,填充并建立rectangle,以备写入imagestring()或是原已经定好的图像程序当中判断水印类型:一是字符串,另是增加一个图形对象在上面。如果你对PHP的GD库比较熟悉,看懂这篇文章一点都不难了!<p ><p >以下是引用片段:<p ><p >/***************************************************** <p >参数说明: <p >$max_file_size  : 上传文件大小限制, 单位BYTE <p >$destination_folder : 上传文件路径 <p >$watermark   : 是否附加水印(1为加水印,其他为不加水印); <p >使用说明: <p >1. 将PHP.INI文件里面的"extension=php_gd2.dll"一行前面的;号去掉,因为我们要用到GD库; <p >2. 将extension_dir =改为你的php_gd2.dll所在目录; <p >3. http://www.knowsky.com/php.asp; <p >****************************************************/ <p >//上传文件类型列表 <p >$uptypes=array( <p >    'image/jpg',  <p >    'image/jpeg', <p >    'image/png', <p >    'image/pjpeg', <p >    'image/gif', <p >    'image/bmp', <p >    'image/x-png' <p >); <p >$max_file_size=2000000;     //上传文件大小限制, 单位BYTE <p >$destination_folder="uploadimg/"; //上传文件路径 <p >$watermark=1;      //是否附加水印(1为加水印,其他为不加水印); <p >$watertype=1;      //水印类型(1为文字,2为图片) <p >$waterposition=1;     //水印位置(1为左下角,2为右下角,3为左上角,4为右上角,5为居中); <p >$waterstring="http://www.xplore.cn/";  //水印字符串 <p >$waterimg="xplore.gif";    //水印图片 <p >$imgpreview=1;      //是否生成预览图(1为生成,其他为不生成); <p >$imgpreviewsize=1/2;    //缩略图比例 <p >?><p ><p ><CENTER><ccid_nobr><table width="400" border="1" cellspacing="0" cellpadding="2"  bordercolorlight = "black" bordercolordark = "#FFFFFF" align="center"><tr><td bgcolor="e6e6e6" class="code" ><pre><ccid_code>&lt;html&gt; &lt;head&gt; &lt;title&gt;ZwelL图片上传程序&lt;/title&gt; &lt;style type=&quot;text/css&quot;&gt; &lt;!-- body {      font-size: 9pt; } input {      background-color: #66CCFF;      border: 1px inset #CCCCCC; } --&gt; &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;form enctype=&quot;multipart/form-data&quot; method=&quot;post&quot; name=&quot;upform&quot;&gt;   上传文件:   &lt;input name=&quot;upfile&quot; type=&quot;file&quot;&gt;   &lt;input type=&quot;submit&quot; value=&quot;上传&quot;&gt;&lt;br&gt;   允许上传的文件类型为:&lt;?=implode(', ',$uptypes)?&gt; &lt;/form&gt; &lt;?php if ($_SERVER['REQUEST_METHOD'] == 'POST') {     if (!is_uploaded_file($_FILES[&quot;upfile&quot;][tmp_name]))     //是否存在文件     {          echo &quot;图片不存在!&quot;;          exit;     }     $file = $_FILES[&quot;upfile&quot;];     if($max_file_size &lt; $file[&quot;size&quot;])     //检查文件大小     {         echo &quot;文件太大!&quot;;         exit;     }     if(!in_array($file[&quot;type&quot;], $uptypes))     //检查文件类型     {         echo &quot;文件类型不符!&quot;.$file[&quot;type&quot;];         exit;     }     if(!file_exists($destination_folder))     {         mkdir($destination_folder);     }     $filename=$file[&quot;tmp_name&quot;];     $image_size = getimagesize($filename);     $pinfo=pathinfo($file[&quot;name&quot;]);     $ftype=$pinfo['extension'];     $destination = $destination_folder.time().&quot;.&quot;.$ftype;     if (file_exists($destination) &amp;&amp; $overwrite != true)     {         echo &quot;同名文件已经存在了&quot;;         exit;     }     if(!move_uploaded_file ($filename, $destination))     {         echo &quot;移动文件出错&quot;;         exit;     }     $pinfo=pathinfo($destination);     $fname=$pinfo[basename];     echo &quot; &lt;font color=red&gt;已经成功上传&lt;/font&gt;&lt;br&gt;文件名:  &lt;font color=blue&gt;&quot;.$destination_folder.$fname.&quot;&lt;/font&gt;&lt;br&gt;&quot;;     echo &quot; 宽度:&quot;.$image_size[0];     echo &quot; 长度:&quot;.$image_size[1];     echo &quot;&lt;br&gt; 大小:&quot;.$file[&quot;size&quot;].&quot; bytes&quot;;     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])         {             case 1:             $simage =imagecreatefromgif($destination);             break;             case 2:             $simage =imagecreatefromjpeg($destination);             break;             case 3:             $simage =imagecreatefrompng($destination);             break;             case 6:             $simage =imagecreatefromwbmp($destination);             break;             default:             die(&quot;不支持的文件类型&quot;);             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)         {             case 1:   //加水印字符串             imagestring($nimage,2,3,$image_size[1]-15,$waterstring,$black);             break;             case 2:   //加水印图片             $simage1 =imagecreatefromgif(&quot;xplore.gif&quot;);             imagecopy($nimage,$simage1,0,0,0,0,85,15);             imagedestroy($simage1);             break;         }         switch ($iinfo[2])         {             case 1:             //imagegif($nimage, $destination);             imagejpeg($nimage, $destination);             break;             case 2:             imagejpeg($nimage, $destination);             break;             case 3:             imagepng($nimage, $destination);             break;             case 6:             imagewbmp($nimage, $destination);             //imagejpeg($nimage, $destination);             break;         }         //覆盖原上传文件         imagedestroy($nimage);         imagedestroy($simage);     }     if($imgpreview==1)     {     echo &quot;&lt;br&gt;图片预览:&lt;br&gt;&quot;;     echo &quot;&lt;ccid_file values=&quot;\&quot; width=&quot;.($image_size[0]*$imgpreviewsize).&quot;height=&quot;.($image_size[1]*$imgpreviewsize);&quot;     echo &quot; alt=\&quot;图片预览:\r文件名:&quot;.$destination.&quot;\r上传时间:\&quot; /&gt;&quot;;     } } ?&gt; &lt;/body&gt; &lt;/html&gt;</ccid_code></pre></td></tr></table></ccid_nobr></CENTER><p >< align=right></P><p align="center"></p></p>
您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-4-5 07:54 , Processed in 0.114906 second(s), 22 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表