第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

正在回答

2 回答

<?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);

?>


0 回復(fù) 有任何疑惑可以回復(fù)我~
#1

superstart 提問(wèn)者

非常感謝!
2016-10-17 回復(fù) 有任何疑惑可以回復(fù)我~

剛寫的

0 回復(fù) 有任何疑惑可以回復(fù)我~

舉報(bào)

0/150
提交
取消

代碼提示錯(cuò)誤

我要回答 關(guān)注問(wèn)題
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)