PHP執行個體程式:實現給上傳圖片加浮水印圖案的做法

來源:互聯網
上載者:User
<form action="<?=$_SERVER['PHP_SELF']?>" method="post" enctype="multipart/form-data" name="form1" id="form1">
  <table width="486" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
      <td width="498" height="28" background="image/top.gif"><div align="center" class="style2">上傳圖片</div></td>
    </tr>
    <tr>
      <td> </td>
    </tr>
    <tr>
      <td><div align="right">
        <table width="426" border="0" align="center" cellpadding="0" cellspacing="0">
          <tr>
            <td width="50" height="32" nowrap="nowrap">路徑:</td>
            <td width="362"><input name="upfile" type="file" id="upfile" size="40" /></td>
          </tr>
         
          <tr>
            <td height="27" colspan="2"><div align="center">
                <input type="submit" name="Submit" value="提交" />
  
<input type="reset" name="Submit" value="重設" />
</div></td>
          </tr>
        </table>
          </div>
        <div align="center"></div></td>
    </tr>
    <tr>
      <td> </td>
    </tr><INPUT TYPE="hidden" name='action' value='doup'>
    <tr>
      <td height="28" background="image/top.gif"> </td>
    </tr>
    <tr>
      <td> </td>
    </tr>
  </table>
</form>
<br>
<A href=http://www.webjx.com target=_blank>網頁教學網webjx.com</A>
<?
if($_POST['action']=='doup')
{
$uptypes=array('image/jpg','image/jpeg','image/pjpeg','image/gif');//上傳圖片檔案類型列表
$wFile=$_FILES['upfile'];//取得檔案路徑
$waterimg="water.gif";//浮水印圖片路徑
//print_r($wFile);
if(in_array($wFile['type'], $uptypes))
{//檢查檔案類型,若上傳的檔案為jpg或gif圖片則加浮水印
   if(strstr($wFile['type'],"jp"))
    { //若上傳圖片類型為jpg,pjpeg,jpeg,則用imagecreatefromjpeg讀取目標檔案
    $im = imageCreatefromjpeg($wFile['tmp_name']);
$wfilew=imagesx($im);//取得圖片的寬
$wfileh=imagesy($im);//取得圖片的高
   }
   else
    {//否則若上傳圖片類型為gif,則用imagecreatefromgif讀取目標檔案
    $im = imageCreatefromgif($wFile['tmp_name']);
$wfilew=imagesx($im);//取得圖片的寬
$wfileh=imagesy($im);//取得圖片的高
}
   //設定混合模式
    imagealphablending($im, true);
    //讀取浮水印檔案
    $im2 = imagecreatefrompng($waterimg);//若浮水印圖片為jpg,則此去可改為$im2 = imagecreatefromjpeg($waterimg)
 //$white = imagecolorallocate($im2, 255, 255, 255);
  // imagecolortransparent($im2,$white);   //設透明色,這兩句可不要
$waterw=imagesx($im2);//取得浮水印圖片的寬
$waterh=imagesy($im2);//取得浮水印圖片的高
    //隨機放浮水印到圖片中
$randval = rand(0,9);//在0-9之間產生隨機數
if($randval==0||$randval==3||$randval==2||$randval==8||$randval==7){//此處還可完善放更多位置
$wimgx=5;$wimgy=5;//放左上方
}else{
$wimgx=$wfilew-5-$waterw;$wimgy=$wfileh-5-$waterh;//放右上方
}
//拷貝浮水印到目標檔案
imagecopy($im, $im2, $wimgx, $wimgy, 0, 0, $waterw,$waterh);
   
//輸出圖片
   if(strstr($wFile['type'],"jp")){ //同上
imagejpeg($im,$wFile['tmp_name']);
}else{
imagegif($im,$wFile['tmp_name']);
}
    imagedestroy($im);
    imagedestroy($im2);
copy($wFile['tmp_name'],$wFile['name']);  //上傳
}
else echo "圖片不符合!!";
}
?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.