關於php生成圖形驗證碼我們講過很多,這是一個非常簡單的適合於php入門者的教程,一個本的用php生成驗證碼的實例代碼。
關於php教程生成圖形驗證碼我們講過很多,這是一個非常簡單的適合於php入門者的教程,一個本的用php生成驗證碼的實例代碼。
<?php
$height = 300;
$width = 300;
//創建背景圖
$im = ImageCreateTrueColor($width, $height);
//分配顏色
$white = ImageColorAllocate ($im, 255, 255, 255);
$blue = ImageColorAllocate ($im, 0, 0, 64);
//繪制顏色至圖像中
ImageFill($im, 0, 0, $blue);
//繪制字符串:Hello,PHP
ImageString($im, 10, 100, 120, 'Hello,PHP', $white);
//輸出圖像,定義頭
Header ('Content-type: image/png');
//將圖像發送至浏覽器
ImagePng($im);
//清除資源
ImageDestroy($im);
?>