PHP:GD 库:增加 ImageString 函数中的字体大小
我有以下代码块将输出验证码图像
$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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
听起来你最好使用
imagettftext
:It sounds like you'd be better off using
imagettftext
:另一个快速选择是在 html 代码中增加图像的大小。 因此,如果您的 captcha.php 文件呈现 50 像素宽的图像,请以 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.
使用
imagettftext()
函数。其中
$size
是字体大小,$fontfile
是包含 TTF 字体的文件。 有关更多使用信息,请参阅 PHP 手册条目(上面链接)。Use the
imagettftext()
function.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).