최근에는 컬러 문자가 인기인데, 간단한 구현 방법은 다음과 같습니다.
1. 컬러 문자의 간단한 구현
코드 복사 코드는 다음과 같습니다.
header("content-type: image/png");
$text = $_get['t']
$font = 'stxingka.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)
코드 복사 코드는 다음과 같습니다:
function smarty_modifier_ubb($string){
$ubb = array(
'/[b](. ?)[/b]/ i', # 굵은 글씨
'/[url=(. ?)](. ?)[/url] /i', #url
'/[colorfont](. ?)[/colorfont]/ ie' #색깔이 있는 단어는 e 수정자를 추가하세요
)
$tohtml = array(
'\1',
'\2',
'""'
);
//위는 ubb의 구현일 뿐이며, 친구들은 메소드에 따라 더 많은 ubb 태그를 구현할 수 있습니다. color.php 루트는 실제로 수정되었습니다
return preg_replace($ubb,$tohtml ,$string);
}
위 내용은 무지개 꼭대기가 어떤 색인지에 대한 내용을 포함하여 무지개 꼭대기가 어떤 색인지에 대한 PHP 색상 텍스트 구현 코드를 소개하고 있어 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.