1

次のコードを使用して、フォームに Captcha を作成しました。キャプチャをうまく作成します。ここで、font-size と Font 文字スペースを変更したいと思います。次のコードの変更方法がわかりません。

      <?php
             session_start();
             $code= substr(str_shuffle("abcdefghijklmnopqrstuvwxyz"), 0, 6);
             $_SESSION["code"]=$code;
             $im = imagecreatetruecolor(150, 35);
             $bg = imagecolorallocate($im, 255, 255, 255);
             $fg = imagecolorallocate($im, 0, 0, 0);
             imagefill($im, 5, 5, $bg);
             imagestring($im, 5, 8, 8,  $code, $fg);
             header("Cache-Control: no-cache, must-revalidate");
             header('Content-type: image/png');
             imagepng($im);
             imagedestroy($im);
        ?>
4

2 に答える 2

2

以下のコードを使用して、PHP の gd ライブラリを使用して簡単なキャプチャを実装できます。あなたは初心者なので、簡単なテスト用のサンプルコードを次に示します。フォントサイズもカバーしています。

<?php
session_start();
header('Content-type: image/jpeg');

$text = rand(1000, 9999);
$font_size = 30;

$image_width = 200;
$image_height = 40;

$image = imagecreate($image_width, $image_height);
imagecolorallocate($image, 255, 255, 255);
$text_color = imagecolorallocate($image, 0, 0, 0);

for ($x=1; $x<=40; $x++) {
     $x1 = rand(1, 100);
     $y1 = rand(1, 100);
     $x2 = rand(1, 100);
     $y2 = rand(1, 100);

 imageline($image, $x1, $y1, $x2, $y2, $text_color);
}

imagettftext($image, $font_size, 0, 15, 30, $text_color, 'FREESCPT.ttf', $text);
imagejpeg($image);

?>

imagettftext 関数で:

imagettftext($image, $font_size, $angle, $x, $y, $text_color, '$font-family', $text);

  $image is the $imagecreate function
  $font_size is the size of font you want.
  $angle is the angle of the fonts tilted
  $x and $y are coordinates.
  $text_color is the imagecolorallocate function
  $font-family is the family of font you want to use
  $text is the text or random text to be displayed

これは、phpでキャプチャを作成する方法に関する優れたチュートリアルです->リンク

于 2013-10-28T06:09:54.447 に答える
2

imagestring関数を使用してフォントを変更できます

于 2013-10-28T05:39:36.303 に答える