読んだらわかるよ、あまり喋らないで話し始めろよ(人は無慈悲であまり話さない)
1.0 まずはコードを見てください
1 <?php 2 header("Content-Type:text/html;Charset=UTF-8");// 设置页面的编码风格 3 header("Content-Type:image/jpeg");// 通知浏览器输出的是jpeg格式的图像 4 5 $img = imagecreatetruecolor(150,50);//创建画布并设置大小 x轴150 y轴50 6 7 $bgcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));//分配背景颜色 8 imagefill($img, 0, 0, $bgcolor); ////把背景填充到图像 9 imagejpeg($img); // 输出图像10 imagedestroy($img); // 销毁图像11 ?>
さて、上記のコードを組み合わせて、上で使用した関数を分析しましょう:
① imagecreatetruecolor();
imagecreatetruecolor — 新しいトゥルーカラー画像を作成します (とても長く感じますが、実際は非常に簡単です) image/create/true/ (よく見ると) color を覚えておいてください。トゥルー カラー イメージとは何ですか (下記を参照)
1 resource imagecreatetruecolor ( int $width , int $height )
imagecreatetruecolor() と imagecreate() 両方の関数でキャンバスを作成できます
1 resource imagecreate ( int $x_size , int $y_size )
imagecreatetruecolor() は、サイズ x の画像と y の黒色の画像を作成します (デフォルトは [トゥルー カラー イメージと呼ばれる場合でも] 黒です)。背景色を変更したい場合は、塗りつぶしの色を使用する必要があります。 function imagefill($img,0,0,$color);
imagecreate 新しい空白の画像リソースを作成し、imagecolorAllocate() を使用して背景色を追加します
上記の 2 つの関数は、同じ関数の 2 つのメソッドにすぎません
② imagecolorallocate();
imagecolorallocate — 画像に色を割り当てる
1 int imagecolorallocate ( resource $image , int $red , int $green , int $blue )
色はそれぞれ赤、緑、青で構成され、これらのパラメータは 0 ~ 255 の整数または 16 進数の 0x00 ~ 0xFF です。
③ mt_rand();
mt_rand — より良い乱数を生成する
1 int mt_rand ( int $min , int $max )
$min オプション、返される最小値 (デフォルト: 0) $max オプション、返される最大値 (デフォルト: mt_getrandmax( ))
これは、背景色を 0 ~ 255 の値でランダムに生成するために使用されます。そのため、ページを更新してもキャンバスの背景色が異なります。 レンダリング:
2.0 内部に干渉線と干渉点の作成を開始します。検証画像を数秒で認識されないようにする
1 <?php 2 header("Content-Type:text/html;Charset=UTF-8");// 设置页面的编码风格 3 header("Content-Type:image/jpeg");// 通知浏览器输出的是jpeg格式的图像 4 5 $img = imagecreatetruecolor(150,50);//创建画布并设置大小 x轴150 y轴50 6 7 $bgcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));//分配背景颜色 8 9 //添加干扰线,并循环3次,背景颜色随机10 for($i=0;$i<3;$i++){11 12 $linecolor = imagecolorallocate($img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));13 imageline($img, mt_rand(0,150), mt_rand(0,50), mt_rand(0,150), mt_rand(0,50), $linecolor);14 15 }16 //添加干扰点,并循环25次,背景颜色随机17 for($i=0;$i<25;$i++){18 19 $dotcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));20 imagesetpixel($img, mt_rand(0,150), mt_rand(0,60), $dotcolor);21 22 }23 24 imagefill($img, 0, 0, $bgcolor); ////把背景填充到图像25 imagejpeg($img); // 输出图像26 imagedestroy($img); // 销毁图像27 ?>
関数分析:
① imageline();
imageline — 線分を描く
1 bool imageline ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color )
image line() はカラー color を使用します画像の画像 座標 x1,y1 から x2,y2 まで線分を描きます (画像の左上隅が 0,0)。 ②その上に点を描きます。
imageline($img, mt_rand(0,150), mt_rand(0,50), mt_rand(0,150), mt_rand(0,50), $linecolor);<br /><br />这里意思就是 画布$img 中从坐标 x1,y1 到 x2,y2随机<br />レンダリング:
3.0 検証英数字を追加
1 bool imagesetpixel ( resource $image , int $x , int $y , int $color )
関数:
imagettf text();
imagettftext — TrueType フォントを使用して画像にテキストを書き込みます
imagesetpixel($img, mt_rand(0,150), mt_rand(0,60), $dotcolor);<br />具体含义同上<br /><br />
次のコードを分析します:
1 <?php 2 header("Content-Type:text/html;Charset=UTF-8");// 设置页面的编码风格 3 header("Content-Type:image/jpeg");// 通知浏览器输出的是jpeg格式的图像 4 5 $img = imagecreatetruecolor(150,50);//创建画布并设置大小 x轴150 y轴50 6 7 $bgcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));//分配背景颜色 8 9 //添加干扰线,并循环3次,背景颜色随机10 for($i=0;$i<3;$i++){11 12 $linecolor = imagecolorallocate($img,mt_rand(0,255),mt_rand(0,255),mt_rand(0,255));13 imageline($img, mt_rand(0,150), mt_rand(0,50), mt_rand(0,150), mt_rand(0,50), $linecolor);14 15 }16 //添加干扰点,并循环25次,背景颜色随机17 for($i=0;$i<25;$i++){18 19 $dotcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));20 imagesetpixel($img, mt_rand(0,150), mt_rand(0,60), $dotcolor);21 22 }23 24 //添加需要验证的字母或者数字25 $rand_str = "qwertyuiopasdfghjklzxcvbnm1234567890";//需要使用到验证的一些字母和数字26 $str_arr = array(); //命名一个数组27 for($i = 0;$i<4;$i++){ //循环4次,就是有四个随机的字母或者数字 28 $pos = mt_rand(0,strlen($rand_str)-1);29 $str_arr[] = $rand_str[$pos];//临时交换30 }31 32 $x_start=150/4;//单个字符X轴位置33 34 foreach ($str_arr as $key) {35 $fontcolor = imagecolorallocate($img, mt_rand(0,255), mt_rand(0,255), mt_rand(0,255));36 imagettftext($img, 25, mt_rand(-15,15), $x_start, 50/2, $fontcolor, "C:/Windows/Fonts/Verdana.TTF", $key);37 $x_start +=20;//遍历后单个字符沿X轴 +2038 }39 40 imagefill($img, 0, 0, $bgcolor); ////把背景填充到图像41 imagejpeg($img); // 输出图像42 imagedestroy($img); // 销毁图像43 ?>
$img-----------Canvas
25----------フォントのサイズ。mt_rand(-15,15)----------角度システムで表される角度、0 度はテキストが左から右に読まれることを意味します。値が大きいほど反時計回りの回転を示します。たとえば、90 度は下から上に読むテキストを表します。 (フォントの角度の問題です)
$x_start----------わかりやすく言えば、文字のX軸の位置です
50/2---------- --文字の高さ
$fontcolor----------文字の色
"C:/Windows/Fonts/Verdana.TTF"----------文字フォントスタイルのパス
$key -----------横断後の文字
効果:
とてもかわいく見えます。