課程
/后端開發(fā)
/PHP
/GD庫(kù)實(shí)現(xiàn)圖片水印與縮略圖
有 源代碼嗎?
2016-10-09
源自:GD庫(kù)實(shí)現(xiàn)圖片水印與縮略圖 2-4
正在回答
<?php
//打開圖片
//1.配置圖片路徑(就是你想要操作的圖片的路徑)
$src = "001.jpg";
//2.獲取圖片信息(通過(guò)GD庫(kù)提供的方法,得到你想要處理的圖片的基本信息)
$info = getimagesize($src);
//3.通過(guò)圖片編號(hào)獲取圖像的類型
$type = image_type_to_extension($info[2],false);
//4.在內(nèi)存中創(chuàng)建一個(gè)和我們圖像類型一樣的圖像
$fun = "imagecreatefrom{$type}";
//5.把圖片復(fù)制到內(nèi)存中
$image = $fun($src);
//操作圖片
//1.設(shè)置字體的路徑
$font = "font.ttf";
//2.填寫水印內(nèi)容
$content = "hello world !";
//3.設(shè)置字體的顏色和透明度 參數(shù)1 內(nèi)存中的圖片?
$col = imagecolorallocatealpha($image, 255, 255, 255, 50);
//4.寫入文字
imagettftext($image, 20, 0, 20, 30, $col, $font, $content);
//輸出圖片
//瀏覽器輸出
header("Content-type:".$info['mime']);
$func = "image{$type}";
$func($image);
//保存圖片
$func($image,"newimage.".$type);
//銷毀圖片
imagedestroy($image);
?>
superstart 提問(wèn)者
剛寫的
舉報(bào)
帶你快速高效的完成圖片處理工作,還可以加深對(duì)面向?qū)ο蟮睦斫?/p> 進(jìn)入課程
2 回答出現(xiàn)錯(cuò)誤請(qǐng)看瀏覽器顯示代碼
1 回答瀏覽器不顯示圖片,錯(cuò)誤代碼在這
1 回答有錯(cuò)誤求解答 代碼點(diǎn)開看
5 回答為什么我的提示 圖像因存在錯(cuò)誤無(wú)法顯示?????
3 回答求助:出現(xiàn)錯(cuò)誤提示Parse error: syntax error, unexpected '$image' (T_VARIABLE) in ...\test.php on line 4
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2016-10-09
<?php
//打開圖片
//1.配置圖片路徑(就是你想要操作的圖片的路徑)
$src = "001.jpg";
//2.獲取圖片信息(通過(guò)GD庫(kù)提供的方法,得到你想要處理的圖片的基本信息)
$info = getimagesize($src);
//3.通過(guò)圖片編號(hào)獲取圖像的類型
$type = image_type_to_extension($info[2],false);
//4.在內(nèi)存中創(chuàng)建一個(gè)和我們圖像類型一樣的圖像
$fun = "imagecreatefrom{$type}";
//5.把圖片復(fù)制到內(nèi)存中
$image = $fun($src);
//操作圖片
//1.設(shè)置字體的路徑
$font = "font.ttf";
//2.填寫水印內(nèi)容
$content = "hello world !";
//3.設(shè)置字體的顏色和透明度 參數(shù)1 內(nèi)存中的圖片?
$col = imagecolorallocatealpha($image, 255, 255, 255, 50);
//4.寫入文字
imagettftext($image, 20, 0, 20, 30, $col, $font, $content);
//輸出圖片
//瀏覽器輸出
header("Content-type:".$info['mime']);
$func = "image{$type}";
$func($image);
//保存圖片
$func($image,"newimage.".$type);
//銷毀圖片
imagedestroy($image);
?>
2016-10-09
剛寫的