PHP:GD 库:增加 ImageString 函数中的字体大小

发布于 2024-07-25 12:18:27 字数 379 浏览 1 评论 0原文

我有以下代码块将输出验证码图像

 $im = @imagecreatefromjpeg("captcha.jpg"); 
 $rand = _generateRandom(3);
 $_SESSION['captcha'] = $rand;
 ImageString($im, 5, 2, 2, $rand[0]." ".$rand[1]." ".$rand[2]." ", ImageColorAllocate ($im, 23, 85, 160));

现在我想增加字体大小。 我将第二个参数用作 5。我知道我们只能使用 1 到 5。 但我想增加 \font 大小一点。 我还想将字体更改为其他字体,例如 Arial 或 Verdana。

怎么做?

I have the following block of code which will output a captcha image

 $im = @imagecreatefromjpeg("captcha.jpg"); 
 $rand = _generateRandom(3);
 $_SESSION['captcha'] = $rand;
 ImageString($im, 5, 2, 2, $rand[0]." ".$rand[1]." ".$rand[2]." ", ImageColorAllocate ($im, 23, 85, 160));

Now I want to increase the font size. I have used the second parameter as 5. I know that we can use from 1 to 5 only. But I want to increase the \font size a bit more. Also I want to change the font also to some other like Arial or Verdana.

How to do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

风柔一江水 2024-08-01 12:18:27

听起来你最好使用 imagettftext

array imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )

It sounds like you'd be better off using imagettftext:

array imagettftext ( resource $image , float $size , float $angle , int $x , int $y , int $color , string $fontfile , string $text )
渔村楼浪 2024-08-01 12:18:27

另一个快速选择是在 html 代码中增加图像的大小。 因此,如果您的 captcha.php 文件呈现 50 像素宽的图像,请以 100 像素宽显示。 这并不理想,但它是一个快速解决方案。

<img src="captcha.php" width="100">

Another quick option is to increase the size of the image, in your html code. So, if your captcha.php file renders a 50px wide image, show it at 100px wide. It's not ideal but it's a quick fix.

<img src="captcha.php" width="100">
楠木可依 2024-08-01 12:18:27

使用 imagettftext() 函数。

$im = @imagecreatefromjpeg("captcha.jpg"); 
 $rand = _generateRandom(3);
 $_SESSION['captcha'] = $rand;
 ImageString($im, $size, 0, 2, 2, ImageColorAllocate ($im, 23, 85, 160), $fontfile, $rand[0]." ".$rand[1]." ".$rand[2]." ");

其中 $size 是字体大小,$fontfile 是包含 TTF 字体的文件。 有关更多使用信息,请参阅 PHP 手册条目(上面链接)。

Use the imagettftext() function.

$im = @imagecreatefromjpeg("captcha.jpg"); 
 $rand = _generateRandom(3);
 $_SESSION['captcha'] = $rand;
 ImageString($im, $size, 0, 2, 2, ImageColorAllocate ($im, 23, 85, 160), $fontfile, $rand[0]." ".$rand[1]." ".$rand[2]." ");

where $size is the font size, and $fontfile is a file containing a TTF font. For more usage information, see the PHP manual entry (linked above).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文