PHP 彩色文字實現代碼

來源:互聯網
上載者:User

最近流行彩字,下面是簡單的實現方法:
一.彩字的簡單實現 複製代碼 代碼如下:header("content-type: image/png");
$text = $_get['t'];
$font = 'stxingka.ttf'; //ttf字型
$fontsize = 30;
$size = imagettfbbox($fontsize, 0, $font, $text); //獲得字型長寬範圍
$dx = abs($size[2]-$size[0]) +10;
$dy = abs($size[5]-$size[3]);
//構建映像
$im = imagecreate($dx,$dy);
imagecolorallocate($im, 255,255, 255); //背景色
$fontcolor = imagecolorallocate($im, 255, 0, 0); //字型顏色
imagettftext($im, $fontsize, 0, 0, abs($size[5]), $fontcolor, $font, $text);
imagepng($im);
imagedestroy($im);

上面的程式只是表述了一些彩字的基本原理,要實現更複雜和美觀的彩字,所要做的只是更換一下字型,改一下字型顏色,添加一些背景圖,再考慮一下緩衝等,方法也差不多,朋友們可以自己試試.
二.彩字應用
上面的程式產生的彩字是通過"?t=文字"來傳遞的,但需注意的是,這些文字最好用urlencode來編碼,當然,長度也應該有限制,這不是本文討論的範圍.
另外,產生彩字的程式和傳遞文字的程式都使用utf-8編碼,如果不是,手工轉一下..
要使用彩字,只需要用<img src="color.php?t=xxx" />即可,其中,color.php為產生彩字的程式(即上面的程式),xxx為經urlencode編碼的文字(用來產生彩字)
三.smarty外掛程式
在smarty的plugins目錄下建立一檔案modifier.ubb.php,內容如下: 複製代碼 代碼如下:function smarty_modifier_ubb($string){
$ubb = array(
'/\[b\](.+?)\[\/b\]/i', #加粗
'/\[url=(.+?)\](.+?)\[\/url\]/i', #url
'/\[colorfont\](.+?)\[\/colorfont\]/ie' #彩字,注意,要加e修飾符
);
$tohtml = array(
'<b>\\1</b>',
'<a href="\\1">\\2</a>',
'"<img src=\'color.php?t=".urlencode("\\1")."\'/>"'
);
//以上只是演ubb的實現,更多的ubb標籤朋友們可以按方法自己實現,其中的color.php根椐實際去修改
return preg_replace($ubb,$tohtml,$string);
}

這樣,要顯示彩字,只需在內容中加入
[colorfont]文字[/colorfont]
顯示時,在smarty模板中使用ubb修飾符即可,如{$contentubb}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.