imagechar() 함수는 문자를 가로로 그립니다.
구문
bool imagechar( img, font, x, y, ch, color )
매개변수
-
이미지 :imagecreatetruecolor()로 이미지를 생성합니다.
-
글꼴 :글꼴 크기 설정
-
x :x 좌표
-
예 :y좌표
-
ㄷ :그릴 캐릭터입니다.
-
색상 :imagecolorallocate()로 생성된 색상 식별자입니다.
돌아가기
imagechar() 함수는 성공하면 TRUE를, 실패하면 FALSE를 반환합니다.
예시
다음은 예입니다.
<?php $img = imagecreate(400, 300); $str = 'Demo'; $bgcolor = imagecolorallocate($img, 30, 80, 70); $textcolor = imagecolorallocate($img, 255, 255, 255); imagechar($img, 80, 100, 90, $str, $textcolor); header('Content-type: image/png'); imagepng($img); ?>
출력
다음은 출력입니다.
예시
위의 예와 같이 다른 좌표와 높이/너비로 문자를 그리는 또 다른 예를 살펴보겠습니다.
<?php $img = imagecreate(350, 270); $str = 'Example'; $bgcolor = imagecolorallocate($img, 70, 100, 130); $textcolor = imagecolorallocate($img, 200, 195, 210); imagechar($img, 100, 50, 70, $str, $textcolor); header('Content-type: image/png'); imagepng($img); ?>
출력
다음은 출력입니다.