- 最后登录
- 2014-10-23
- 注册时间
- 2011-7-19
- 阅读权限
- 90
- 积分
- 81303
- 纳金币
- -1
- 精华
- 11
|
test.php 的代码
<?php
header('Content-type: image/png;');
$name= request("n", "default");
$font = "STLITI.TTF";//注意这里,这里我把 C:WINDOWSFonts 下的 STLITI.TTF 拷到 test.php 同目录下,可以使用 C:WINDOWSFonts 下任意 *.TTF 或者 *.TTC 的字体
$name=translateCharset($name, "gb2312");
$im = imagecreate(1, 1);
$black = imagecolorallocate($im, 243, 169, 91);
$fcolor = imagecolorallocate($im, 243, 169, 90);
$para = imagettftext($im, 100, 0, 0, 112, $fcolor, $font, $name);
$im = imagecreate($para[2], $para[1]);
$black = imagecolorallocate($im, 243, 169, 91);
$fcolor = imagecolorallocate($im, 243, 169, 90);
imagettftext($im, 100, 0, 0, 112, $fcolor, $font, $name);
imagecolortransparent($im, $black);
imagepng($im);
imagedestroy($im);
function translateCharset($string, $fromCharset, $toCharset='UTF-8') {
if(function_exists('mb_convert_encoding')) {
return mb_convert_encoding($string, $toCharset, $fromCharset);
} elseif(function_exists('iconv')) { // iconv is flakey
return iconv($fromCharset, $toCharset, $string);
} else {
return $string;
} // end else clause
}
function request($var_name, $default = null)
{
global $_POST, $_GET;
if ( isset( $_POST[$var_name] ) ) {
$result = add_slashes( $_POST[$var_name] );
}
else if ( isset( $_GET[$var_name] ) ) {
$result = add_slashes( $_GET[$var_name] );
}
else if ( func_num_args() > 1 ) { #check for a default passed in (allowing null)
$result = add_slashes($default);
}
else {
$result = null;
}
if($result == '' || $result == null){
$result = $default;
}
return $result;
}
function add_slashes( $var )
{
if ( 1 == get_magic_quotes_gpc() ) {
return $var;
}
else if ( !is_array( $var ) ){
return addslashes( $var );
}
else {
foreach ( $var as $key => $value ) {
$var[$key] = add_slashes( $value );
}
return $var;
}
}
?>
我这个生成png 的图片用的是 php 的 gd2 的库,因为服务器可能放到Linux上,服务器是 windows 的同学可以用 windows 的 GDI+ 去画 png 图片。
最后说说 php 中的参数问题 在 http://127.0.0.1/test.php?n=%C4%E3%BA%C3 中,n= 后面的是要显示的字符,%C4%E3%BA%C3 是“你好”的UTF8编码。
如何得到中文的UTF8编码? 有2个方法
(1)可以使用javascript 的 encodeURIComponent
(2)打开 firefox,在地址栏输入 http://127.0.0.1/test.php?n= 任意中文字符,敲回车,得到真实 地址。
本教程转自网互联网,未经检测,不知是否有效,用过的朋友请留言。牵涉到一些php知识点。
|
|