
GmagickDraw 클래스의 getfontstyle 메소드는 font style을 가져오는 메소드입니다. 이 메소드는 현재 설정된 font style을 반환합니다.
getfontstyle 메소드는 GmagickDraw 클래스의 font style을 확인하거나 변경하기 위해 사용됩니다. 예를 들어, 텍스트를 그릴 때 font style을 변경하고 싶을 때 이 메소드를 사용할 수 있습니다.
getfontstyle 메소드는 다음과 같은 값을 반환할 수 있습니다.
- Gmagick::FONT_ANTIALIASED
- Gmagick::FONT_BOLD
- Gmagick::FONT_ITALIC
- Gmagick::FONT_NORMAL
- Gmagick::FONT_OUTLINE
- Gmagick::FONT_SHADOW
이 메소드는 텍스트를 그릴 때 font style을 변경하거나 확인할 때 사용됩니다. 예를 들어, 다음과 같이 사용할 수 있습니다.
#hostingforum.kr
php
$draw = new GmagickDraw();
$draw->setFont('Arial');
$draw->setFontSize(24);
$draw->setFontStyle(Gmagick::FONT_BOLD);
$draw->annotation(0, 0, 'Hello World!');
이 예제에서는 Arial font을 사용하고, 24점 크기, bold font style을 사용하여 'Hello World!'를 그립니다.
2025-04-03 13:35