最新回答 / 北漂外鄉(xiāng)人
刷新驗證碼有兩種方式:直接刷新頁面, 你可以直接F5是自己創(chuàng)建的html上的控件進(jìn)行刷新, 自己定義好控件的onclick方法,使用JS將img的src換掉就可以直接刷新驗證碼了一般情況下,驗證碼的制作和使用,都是選用第二種方法的, 因為第一種方法是直接刷新頁面了, 如果你的頁面中填寫了很多信息,這樣一刷就沒了; 第二種是只刷新驗證碼的, 不會對頁面的其他地方造成影響
2017-08-22
imagettftext($image, 20, 0, $x, $y, $fontcolor, $font, $fontcontent);
2017-07-17
for ($i=0; $i <200 ; $i++) {
// 在循環(huán)內(nèi),用GD庫生成一個隨機(jī)顏色
$color = imagecolorallocate($image, mt_rand(50,120), mt_rand(50,120), mt_rand(50,120));
imagesetpixel($image, mt_rand(0,100), mt_rand(0,30), $color);
// 在隨機(jī)位置上畫一個干擾點(diǎn),顏色使用上面的隨機(jī)顏色
# code...
}
// 在循環(huán)內(nèi),用GD庫生成一個隨機(jī)顏色
$color = imagecolorallocate($image, mt_rand(50,120), mt_rand(50,120), mt_rand(50,120));
imagesetpixel($image, mt_rand(0,100), mt_rand(0,30), $color);
// 在隨機(jī)位置上畫一個干擾點(diǎn),顏色使用上面的隨機(jī)顏色
# code...
}
2017-07-13
最新回答 / wwxxyy
(PHP 4 >= 4.0.6, PHP 5, PHP 7)imagecreatetruecolor?—?新建一個真彩色圖像說明imagecreatetruecolor?(?int?$width?,?int?$height?) :?resourceimagecreatetruecolor()?返回一個圖像標(biāo)識符,代表了一幅大小為?x_size?和?y_size?的黑色圖像。
2017-06-22