搜尋
首頁後端開發php教程PHP:实现给下传图片加水印的程序代码

PHP:实现给上传图片加水印的程序代码
用PHP给上传图片加水印的程序是通过判断文件类型建立图形,然后把其复制到原建立的图形上,填充并建立rectangle,以备写入imagestring()或是原已经定好的图像程序当中判断水印类型:一是字符串,另是增加一个图形对象在上面。如果你对PHP的GD库比较熟悉,看懂这篇文章一点都不难了!

/*****************************************************参数说明:$max_file_size  : 上传文件大小限制, 单位BYTE$destination_folder : 上传文件路径$watermark   : 是否附加水印(1为加水印,其他为不加水印);使用说明:1. 将PHP.INI文件里面的"extension=php_gd2.dll"一行前面的;号去掉,因为我们要用到GD库;2. 将extension_dir =改为你的php_gd2.dll所在目录;****************************************************///上传文件类型列表$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.hackhome.com/";  //水印字符串$waterimg="xplore.gif";    //水印图片$imgpreview=1;      //是否生成预览图(1为生成,其他为不生成);$imgpreviewsize=1/2;    //缩略图比例?>



<html><head><title>ZwelL图片上传程序</title><style type="text/css"><!--body{ font-size: 9pt;}input{     background-color: #66CCFF;     border: 1px inset #CCCCCC;}--></style></head><body><form enctype="multipart/form-data" method="post" name="upform">  上传文件:  <input name="upfile" type="file">  <input type="submit" value="上传"><br>  允许上传的文件类型为:<?=implode(', ',$uptypes)?></form><?phpif ($_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"];        exit;    }    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 "移动文件出错";        exit;    }    $pinfo=pathinfo($destination);    $fname=$pinfo[basename];    echo " <font color=red>已经成功上传</font><br>文件名:  <font color=blue>".$destination_folder.$fname."</font><br>";    echo " 宽度:".$image_size[0];    echo " 长度:".$image_size[1];    echo "<br> 大小:".$file["size"]." bytes";    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("不支持的文件类型");            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("xplore.gif");            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 "<br>图片预览:<br>";    echo "<img src=\"".$destination."\"    style="max-width:90%" height=".($image_size[1]*$imgpreviewsize);    echo " alt=\"图片预览:\r文件名:".$destination."\r上传时间:\">";    }}?></body>

陳述
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
PHP如何識別用戶的會話?PHP如何識別用戶的會話?May 01, 2025 am 12:23 AM

phpIdentifiesauser'ssessionSessionSessionCookiesAndSessionId.1)whiwsession_start()被稱為,phpgeneratesainiquesesesessionIdStoredInacookInAcookInAcienamedInAcienamedphpsessIdontheuser'sbrowser'sbrowser.2)thisIdallowSphptpptpptpptpptpptpptpptoretoreteretrieetrieetrieetrieetrieetrieetreetrieetrieetrieetrieetremthafromtheserver。

確保PHP會議的一些最佳實踐是什麼?確保PHP會議的一些最佳實踐是什麼?May 01, 2025 am 12:22 AM

PHP會話的安全可以通過以下措施實現:1.使用session_regenerate_id()在用戶登錄或重要操作時重新生成會話ID。 2.通過HTTPS協議加密傳輸會話ID。 3.使用session_save_path()指定安全目錄存儲會話數據,並正確設置權限。

PHP會話文件默認存儲在哪裡?PHP會話文件默認存儲在哪裡?May 01, 2025 am 12:15 AM

phpsessionFilesArestoredIntheDirectorySpecifiedBysession.save_path,通常是/tmponunix-likesystemsorc:\ windows \ windows \ temponwindows.tocustomizethis:tocustomizEthis:1)useession_save_save_save_path_path()

您如何從PHP會話中檢索數據?您如何從PHP會話中檢索數據?May 01, 2025 am 12:11 AM

ToretrievedatafromaPHPsession,startthesessionwithsession_start()andaccessvariablesinthe$_SESSIONarray.Forexample:1)Startthesession:session_start().2)Retrievedata:$username=$_SESSION['username'];echo"Welcome,".$username;.Sessionsareserver-si

您如何使用會議來實施購物車?您如何使用會議來實施購物車?May 01, 2025 am 12:10 AM

利用會話構建高效購物車系統的步驟包括:1)理解會話的定義與作用,會話是服務器端的存儲機制,用於跨請求維護用戶狀態;2)實現基本的會話管理,如添加商品到購物車;3)擴展到高級用法,支持商品數量管理和刪除;4)優化性能和安全性,通過持久化會話數據和使用安全的會話標識符。

您如何在PHP中創建和使用接口?您如何在PHP中創建和使用接口?Apr 30, 2025 pm 03:40 PM

本文解釋瞭如何創建,實施和使用PHP中的接口,重點關注其對代碼組織和可維護性的好處。

crypt()和password_hash()有什麼區別?crypt()和password_hash()有什麼區別?Apr 30, 2025 pm 03:39 PM

本文討論了PHP中的crypt()和password_hash()的差異,以進行密碼哈希,重點介紹其實施,安全性和對現代Web應用程序的適用性。

如何防止PHP中的跨站點腳本(XSS)?如何防止PHP中的跨站點腳本(XSS)?Apr 30, 2025 pm 03:38 PM

文章討論了通過輸入驗證,輸出編碼以及使用OWASP ESAPI和HTML淨化器之類的工具來防止PHP中的跨站點腳本(XSS)。

See all articles

熱AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover

AI Clothes Remover

用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool

Undress AI Tool

免費脫衣圖片

Clothoff.io

Clothoff.io

AI脫衣器

Video Face Swap

Video Face Swap

使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱工具

PhpStorm Mac 版本

PhpStorm Mac 版本

最新(2018.2.1 )專業的PHP整合開發工具

EditPlus 中文破解版

EditPlus 中文破解版

體積小,語法高亮,不支援程式碼提示功能

Atom編輯器mac版下載

Atom編輯器mac版下載

最受歡迎的的開源編輯器

Dreamweaver CS6

Dreamweaver CS6

視覺化網頁開發工具

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

這個專案正在遷移到osdn.net/projects/mingw的過程中,你可以繼續在那裡關注我們。 MinGW:GNU編譯器集合(GCC)的本機Windows移植版本,可自由分發的導入函式庫和用於建置本機Windows應用程式的頭檔;包括對MSVC執行時間的擴展,以支援C99功能。 MinGW的所有軟體都可以在64位元Windows平台上運作。