php 生成图片。汉语显示乱码
php 生成图片。中文显示乱码
php 生成图片的中文部分。。变成乱码。。该怎么解决。。?
以下我是我的代码
字体已经拷贝到我的跟目录了:
header("Content-type: image/png");
$height=200;
$width=200;
[email protected]($width,$height) or die("Cannot Initialize new GD image stream");
//颜色设置
$background_color = imagecolorallocate($im, 255, 255, 255);//背景颜色
$lin_color = imagecolorallocate($im, 209, 124, 2);//线条颜色
$text_color= imagecolorallocate($im, 209, 124, 2);//文字颜色
//画图
imagefill($im,0,0,$background_color);//填充背景
//5条横线
imageline($im, 0, 0, $width, 0, $lin_color);
imageline($im, 0, 199, 199, 199, $lin_color);
imageline($im, 0, 50, $width, 50, $lin_color);
imageline($im, 0, 100, $width, 100, $lin_color);
imageline($im, 0, 150, $width, 150, $lin_color);
//5条竖线
imageline($im, 0, 0, 0, $height, $lin_color);
imageline($im, 199, 0, 199, 199, $lin_color);
imageline($im, 50, 0, 50, $height, $lin_color);
imageline($im, 100, 0, 100, $height, $lin_color);
imageline($im, 150, 0, 150, $height, $lin_color);
//输入文字
$str=iconv("Gb2312","UTF-8","中文");
$font = 'arial.ttf';
ImageTTFText($im, 13, 0, 10,10, $text_color, $font,$str);
//输出图像
imagepng($im);
//清理
imagedestroy($im);
?>
------解决方案--------------------
- PHP code
<br> <?php <br /> // Set the content-type <br> header("Content-type: image/png"); <br> <br> // Create the image <br> $im = imagecreatetruecolor(400, 30); <br> <br> // Create some colors <br> $white = imagecolorallocate($im, 255, 255, 255); <br> $grey = imagecolorallocate($im, 128, 128, 128); <br> $black = imagecolorallocate($im, 0, 0, 0); <br> imagefilledrectangle($im, 0, 0, 399, 29, $white); <br> <br> // The text to draw <br> $text = '方正卡通简体...'; <br> // Replace path by your own font path <br> $font = '方正卡通简体.ttf'; <br> $text = iconv('gb2312','utf-8',$text);#[color=#FF0000]Attention[/color] <br> // Add some shadow to the text <br> imagettftext($im, 20, 0, 11, 21, $grey, $font, $text); <br> <br> // Add the text <br> imagettftext($im, 20, 0, 10, 20, $black, $font, $text); <br> <br> // Using imagepng() results in clearer text compared with imagejpeg() <br> imagepng($im); <br> imagedestroy($im); <br> ?> <br> <br> <br>

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

热门话题

JWT是一种基于JSON的开放标准,用于在各方之间安全地传输信息,主要用于身份验证和信息交换。1.JWT由Header、Payload和Signature三部分组成。2.JWT的工作原理包括生成JWT、验证JWT和解析Payload三个步骤。3.在PHP中使用JWT进行身份验证时,可以生成和验证JWT,并在高级用法中包含用户角色和权限信息。4.常见错误包括签名验证失败、令牌过期和Payload过大,调试技巧包括使用调试工具和日志记录。5.性能优化和最佳实践包括使用合适的签名算法、合理设置有效期、

文章讨论了PHP 5.3中引入的PHP中的晚期静态结合(LSB),从而允许静态方法的运行时分辨率调用以获得更灵活的继承。 LSB的实用应用和潜在的触摸

使用PHP的cURL库发送JSON数据在PHP开发中,经常需要与外部API进行交互,其中一种常见的方式是使用cURL库发送POST�...

SOLID原则在PHP开发中的应用包括:1.单一职责原则(SRP):每个类只负责一个功能。2.开闭原则(OCP):通过扩展而非修改实现变化。3.里氏替换原则(LSP):子类可替换基类而不影响程序正确性。4.接口隔离原则(ISP):使用细粒度接口避免依赖不使用的方法。5.依赖倒置原则(DIP):高低层次模块都依赖于抽象,通过依赖注入实现。

会话劫持可以通过以下步骤实现:1.获取会话ID,2.使用会话ID,3.保持会话活跃。在PHP中防范会话劫持的方法包括:1.使用session_regenerate_id()函数重新生成会话ID,2.通过数据库存储会话数据,3.确保所有会话数据通过HTTPS传输。
