验证码图像在php中不可见

时间:2014-02-21 17:50:56

标签: php gd captcha

我已经在centos服务器上预装了GD库和Freetype库。 我无法看到验证码图像。

ERROR:

Call to undefined function imagettfbbox() in /path/public_html/captcha/securimage.php

可能是什么原因?

感谢。

1 个答案:

答案 0 :(得分:0)

尝试使用 reCAPTCHA 在某些托管服务器中,基于GD的验证码不起作用。我经历过这个。 reCAPTCHA可以与GD库一起使用。 它从外部服务加载验证码图像,并使用公钥加密验证。 所以内部生成验证码图像。 非常好用。

<强> E.G:

前端:

<html>
    <body> <!-- the body tag is required or the CAPTCHA may not show on some browsers -->
      <!-- your HTML content -->

      <form method="post" action="verify.php">
        <?php
          require_once('recaptchalib.php');
          $publickey = "your_public_key"; // you got this from the signup page
          echo recaptcha_get_html($publickey);
        ?>
        <input type="submit" />
      </form>

      <!-- more of your HTML content -->
    </body>
  </html>

后端验证:

<?php
  require_once('recaptchalib.php');
  $privatekey = "your_private_key";
  $resp = recaptcha_check_answer ($privatekey,
                                $_SERVER["REMOTE_ADDR"],
                                $_POST["recaptcha_challenge_field"],
                                $_POST["recaptcha_response_field"]);

  if (!$resp->is_valid) {
    // What happens when the CAPTCHA was entered incorrectly
    die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
         "(reCAPTCHA said: " . $resp->error . ")");
  } else {
    // Your code here to handle a successful verification
  }
  ?>

了解更多信息请访问:https://developers.google.com/recaptcha/docs/php