
ImagickDraw::setStrokeWidth() 메소드는 파라미터로 float 타입을 받아야 합니다.
float 타입은 32비트 부동소수점 숫자를 표현하는 데이터 타입입니다.
예를 들어, 다음과 같이 사용할 수 있습니다.
#hostingforum.kr
php
$draw = new ImagickDraw();
$draw->setStrokeWidth(2.0); // 2.0은 float 타입
2025-05-22 15:49