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

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

運(yùn)行沒(méi)有報(bào)錯(cuò),但是不顯示圖片

<?php?


/**

?* @param integer $width 寬度

?* @param? integer $[height] [高度]

?* @param? integer $[type] [1為純數(shù)字,2為大小寫(xiě)字母,3為字母數(shù)字混合]

?* @param? integer $[length] [輸出的驗(yàn)證碼數(shù)量]

?* @return string [驗(yàn)證碼字符串]

?*/


//封裝一個(gè)驗(yàn)證碼函數(shù)

function test_session($width=100,$height=30,$type=3,$length=4){

//先設(shè)定一個(gè)畫(huà)布資源/顏色并覆蓋,這是底色圖片

$image=imagecreatetruecolor($width, $height);

$white=imagecolorallocate($image, 255, 255, 255);

imagefilledrectangle($image, 0, 0, $width, $height, $white);

switch ($type) {

case 1:

//array_rand是隨機(jī)返回($length)個(gè)數(shù)組中的鍵/下標(biāo)值

$str=join('',array_rand(range(0,9),$length));

break;

case 2:

//array_merge是合并數(shù)組

$str=join('',array_rand(array_flip(array_merge(range('a','z'),range('A','Z'))),$length));

break;

case 3:

//array_flip是交換數(shù)組的下標(biāo)和值

$str=join('',array_rand(array_flip(array_merge(range('a','z'),range('A','Z'),range(0,9))),$length));

break;

}

//設(shè)置字體

$fize='D:\wamp64\www\project01\session.test.php\STXINGKA.TTF';

//設(shè)定一個(gè)隨機(jī)顏色數(shù)組

function colorrand($image){

return imagecolorallocate($image,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));

}

for ($i=1; $i <$length ; $i++) {?

imagefttext($image,16, mt_rand(-30,30),($width/$length)*$i, mt_rand($height-15,+15), colorrand($image),$fize,$str);

}

//設(shè)置干擾點(diǎn)

for($i=1;$i<200;$i++){

imagesetpixel($image, mt_rand(0,$width), mt_rand(0,$height), colorrand($image));

}

header('Conten-Type:image/png');

imagepng($image);

imagedestroy($image);

return $str;

}



??>

以上是我敲的代碼,望指點(diǎn),謝謝~!

正在回答

2 回答

<?php

/**

?* @param integer $width 寬度

?* @param? integer $[height] [高度]

?* @param? integer $[type] [1為純數(shù)字,2為大小寫(xiě)字母,3為字母數(shù)字混合]

?* @param? integer $[length] [輸出的驗(yàn)證碼數(shù)量]

?* @return string [驗(yàn)證碼字符串]

?*/


//封裝一個(gè)驗(yàn)證碼函數(shù)

function test_session($width=100,$height=30,$type=2,$length=4,$fize='D:\wamp64\www\project01\session.test.php\STXINGKA.TTF'){

???? //先設(shè)定一個(gè)畫(huà)布資源/顏色并覆蓋,這是底色圖片

???? $image=imagecreatetruecolor($width, $height);

???? $white=imagecolorallocate($image, 255, 255, 255);

???? imagefilledrectangle($image, 0, 0, $width, $height, $white);

???? switch ($type) {

???????? case 0:

???????????? //array_rand是隨機(jī)返回($length)個(gè)數(shù)組中的鍵/下標(biāo)值

???????????? $str=join('',array_rand(range(0,9),$length));

???????????? break;

???? ???? case 1:

???????????? //array_merge是合并數(shù)組

???????????? $str=join('',array_rand(array_flip(array_merge(range('a','z'),range('A','Z'))),$length));

???????????? break;

???????? case 2:

???????????? //array_flip是交換數(shù)組的下標(biāo)和值

???????????? $str=join('',array_rand(array_flip(array_merge(range('a','z'),range('A','Z'),range(0,9))),$length));

???????????? break;

???? }

???? //設(shè)置字體

???? //設(shè)定一個(gè)隨機(jī)顏色

???????? //$color = imagecolorallocate($image,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));

???????? //如果把這個(gè)顏色放在設(shè)定字體的循環(huán)外面,那么所有的調(diào)用都會(huì)是一個(gè)顏色

???? for($i=0; $i <$length ; $i++) {

???????? $color = imagecolorallocate($image,mt_rand(80,220),mt_rand(80,220),mt_rand(80,220));?

???????? imagefttext($image, 16, mt_rand(-20,20), $i*$width/$length+4,mt_rand($height-15,25),$color,$fize,$str[$i]);

???? }

???? //設(shè)置干擾點(diǎn)

???? //如果這個(gè)變量$color 放在了for循環(huán)外面,那么所有的點(diǎn)都會(huì)是一個(gè)顏色

???? for($i=1;$i<200;$i++){

???????? $color2 = imagecolorallocate($image,mt_rand(40,255),mt_rand(40,255),mt_rand(40,255));

???????? imagesetpixel($image, mt_rand(0,$width), mt_rand(0,$height), $color2);

???? }

???? header('Content-Type:image/png');

???? imagepng($image);

???? imagedestroy($image);

???? return $str;

????}

????//要查看效果記得調(diào)用一下函數(shù)

????test_session($width=100,$height=30,$type=2,$length=4,$fize='D:\wamp64\www\project01\session.test.php\STXINGKA.TTF');//但是在html的img src路徑里調(diào)用這個(gè)函數(shù)時(shí),這個(gè)調(diào)用可以不額外寫(xiě),因?yàn)樵趆tml引用這個(gè)函數(shù)本身就是一次調(diào)用

??>

????????單獨(dú)看效果,需要額外調(diào)用一下函數(shù)https://img1.sycdn.imooc.com//5ca9b2950001fd0208220344.jpg

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

慕粉1505418636

查看效果一片漆黑沒(méi)有圖片顯示什么原因??
2019-09-03 回復(fù) 有任何疑惑可以回復(fù)我~

自己研究了一上午,找到了幾處錯(cuò)誤借鑒一下,

  1. 是拼寫(xiě)錯(cuò)誤,有些地方的拼寫(xiě)錯(cuò)了,大家仔細(xì)看一下不難發(fā)現(xiàn)

  2. 我在往圖片上寫(xiě)字(用imagefttext)函數(shù)時(shí),里面顏色選項(xiàng)如果是調(diào)用前面設(shè)定的數(shù)組,就會(huì)失敗,但不會(huì)報(bào)錯(cuò),這點(diǎn)是我一段一段代碼排查出來(lái)的,原理我也不懂,希望有人指教一下

  3. 想要在查看這個(gè)頁(yè)面的代碼顯示效果,需要在下面再調(diào)用一下這個(gè)函數(shù)

  4. 改進(jìn)之后的代碼和注釋我發(fā)下面了

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

舉報(bào)

0/150
提交
取消

運(yùn)行沒(méi)有報(bào)錯(cuò),但是不顯示圖片

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

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

幫助反饋 APP下載

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

公眾號(hào)

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