1 Star 0 Fork 5

罗培中开发空间/php_basic

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pic3.php 570 Bytes
一键复制 编辑 原始数据 按行查看 历史
lpz2 提交于 2021-01-03 16:13 . 图像
<?php
header('Content-Type:image/jpeg');
$im = imagecreatetruecolor(275,225);
$white = imagecolorallocate($im,255,255,255);
$blue = imagecolorallocate($im,0,102,255);
$code=mb_detect_encoding("对对对");
error_log($code);
// $text = iconv("gbk","utf-8","对对对");
$text = iconv($code, "UTF-8//IGNORE", "对对对");
// $text = "...对对对";
error_log($text);
$font = 'C:\WINDOWS\Fonts\simhei.ttf';
imagefill($im,0,0,$blue);
imagettftext($im,50,0,50,50,$white,$font,$text);
imagepng($im);
imagedestroy($im);
?>
<!-- 加载已有的系统字体 -->
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
PHP
1
https://gitee.com/lpz22/php_basic.git
git@gitee.com:lpz22/php_basic.git
lpz22
php_basic
php_basic
master

搜索帮助