解析PHP經(jīng)典的給圖片加水印程序(3)_PHP教程
教程Tag:暫無Tag,歡迎添加,賺取U幣!
推薦:PHP教程之采集百度音樂程序采集百度MP3TOP100和TOP500 列表歌曲文件URL的小程序! ? /* 作者:夜無眠 QQ:27262681 本程序?qū)俣鹊男赂鑄OP100和熱歌TOP500列表里的音樂隨機(jī)采集一個(gè)mp3或wma文件URL與歌手、歌名一起組成二維數(shù)組,并序列化保存在db.txt里 開啟采集時(shí)要輸入密碼,防止惡
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;
}
分享:PHP教程之PHP連接ACCESS數(shù)據(jù)庫的類試過PHP連接ACCESS數(shù)據(jù)庫沒?這個(gè)用途不大,但有時(shí)候也用得著!我以前試圖將一個(gè)ASP程序改寫成PHP的,原程序的數(shù)據(jù)庫設(shè)計(jì)得比較完善,我打算開發(fā)時(shí)就用它的ACCESS數(shù)據(jù)庫 ,等程序完成后再轉(zhuǎn)換。這個(gè)程序改寫計(jì)劃最終擱淺了,但此過程中為了方便連接ACCESS數(shù)
相關(guān)PHP教程:
- PHPNOW安裝Memcached擴(kuò)展方法詳解
- php記錄頁面代碼執(zhí)行時(shí)間
- PHP中獎(jiǎng)概率的抽獎(jiǎng)算法程序代碼
- apache設(shè)置靜態(tài)文件緩存方法介紹
- php對(duì)圖像的各種處理函數(shù)代碼小結(jié)
- PHP 關(guān)于訪問控制的和運(yùn)算符優(yōu)先級(jí)介紹
- 關(guān)于PHP語言構(gòu)造器介紹
- php/js獲取客戶端mac地址的實(shí)現(xiàn)代碼
- php5.5新數(shù)組函數(shù)array_column使用
- PHP preg_match的匹配多國(guó)語言的技巧
- php 中序列化和json使用介紹
- php采集文章中的圖片獲取替換到本地
- 相關(guān)鏈接:
- 教程說明:
PHP教程-解析PHP經(jīng)典的給圖片加水印程序(3)
。