<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[沧海一粟]]></title> 
<link>http://www.dzhope.com/index.php</link> 
<description><![CDATA[Web系统架构与服务器运维,php开发]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[沧海一粟]]></copyright>
<item>
<link>http://www.dzhope.com/post//</link>
<title><![CDATA[imagettftext 函数的用法]]></title> 
<author>jed &lt;jed521@163.com&gt;</author>
<category><![CDATA[代码编程]]></category>
<pubDate>Fri, 22 Jun 2007 07:22:30 +0000</pubDate> 
<guid>http://www.dzhope.com/post//</guid> 
<description>
<![CDATA[ 
	(PHP 3, PHP 4, PHP 5)<br/><br/>imagettftext -- 用 TrueType 字体向图像写入文本<br/>说明<br/>array imagettftext ( resource image, float size, float angle, int x, int y, int color, string fontfile, string text )<br/><br/><br/><br/><br/>image<br/>图像资源。见 imagecreatetruecolor()。 <br/><br/>size<br/>字体大小。根据 GD 版本不同，应该以像素大小指定（GD1）或点大小（GD2）。 <br/><br/>angle<br/>角度制表示的角度，0 度为从左向右读的文本。更高数值表示逆时针旋转。例如 90 度表示从下向上读的文本。 <br/><br/>x<br/>由 x，y 所表示的坐标定义了第一个字符的基本点（大概是字符的左下角）。这和 imagestring() 不同，其 x，y 定义了第一个字符的左上角。例如 "top left" 为 0, 0。 <br/><br/>y<br/>Y 坐标。它设定了字体基线的位置，不是字符的最底端。 <br/><br/>color<br/>颜色索引。使用负的颜色索引值具有关闭防锯齿的效果。见 imagecolorallocate()。 <br/><br/>fontfile<br/>是想要使用的 TrueType 字体的路径。 <br/><br/>根据 PHP 所使用的 GD 库的不同，当 fontfile 没有以 / 开头时则 .ttf 将被加到文件名之后并且会在库定义字体路径中尝试搜索该文件名。 <br/><br/>当使用的 GD 库版本低于 2.0.18 时，一个空格字符 而不是分号将被用来作为不同字体文件的“路径分隔符”。不小心使用了此特性将会导致一条警告信息：Warning: Could not find/open font。对受影响的版本来说唯一解决方案就是将字体移动到不包含空格的路径中去。 <br/><br/>很多情况下字体都放在脚本的同一个目录下。下面的小技巧可以减轻包含的问题。<br/><div class="code"><br/> &lt;?php<br/>// Set the enviroment variable for GD<br/>putenv(&#039;GDFONTPATH=&#039; . realpath(&#039;.&#039;));<br/><br/>// Name the font to be used (note the lack of the .ttf extension)<br/>$font = &#039;SomeFont&#039;;<br/>?&gt; &nbsp;<br/></div><br/><br/><br/>text<br/>文本字符串。 <br/><br/>可以包含十进制数字化字符表示（形式为：&#8364;）来访问字体中超过位置 127 的字符。UTF-8 编码的字符串可以直接传递。 <br/><br/>如果字符串中使用的某个字符不被字体支持，一个空心矩形将替换该字符。 <br/><br/><br/>imagettftext() 返回一个含有 8 个单元的数组表示了文本外框的四个角，顺序为坐下角，右下角，右上角，左上角。这些点是相对于文本的而和角度无关，因此“左上角”指的是以水平方向看文字时其左上角。 <br/><br/>例子 1. imagettftext() 例子<br/><br/>本例中的脚本将生成一个白色的 400x30 像素 PNG 图像，其中有黑色（带灰色阴影）Arial 字体写的“Testing...”。 <br/><div class="code"><br/>&lt;?php<br/>// Set the content-type<br/>header(&quot;Content-type: image/png&quot;);<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/><br/>// The text to draw<br/>$text = &#039;Testing...&#039;;<br/>// Replace path by your own font path<br/>$font = &#039;arial.ttf&#039;;<br/><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/>?&gt; &nbsp;<br/></div><br/><br/><br/>本函数同时需要 GD 库和 FreeType 库。 <br/><br/>例子：<br/><div class="code"><br/>&lt;?php<br/>header(&quot;Content-type: image/jpeg&quot;);<br/>$im = imagecreate(400,30);<br/>$white = imagecolorallocate($im, 255,255,255);<br/>$black = imagecolorallocate($im, 0,0,0);<br/>$string = iconv(&quot;GB2312&quot;, &quot;UTF-8&quot;, &quot;我爱你&quot;);<br/>$font = &quot;SIMHEI.TTF&quot;;<br/>// Replace path by your own font path<br/>imagettftext($im, 20, 0, 10, 20, $black, $font, $string);<br/>imagejpeg($im);<br/>imagedestroy($im);<br/>?&gt;<br/><br/></div><br/>Tags - <a href="http://www.dzhope.com/tags/%25E9%25AA%258C%25E8%25AF%2581%25E7%25A0%2581/" rel="tag">验证码</a>
]]>
</description>
</item><item>
<link>http://www.dzhope.com/post//#blogcomment</link>
<title><![CDATA[[评论] imagettftext 函数的用法]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.dzhope.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>