이 기사의 예에서는 PHP로 그림을 그리는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 구체적인 구현 방법은 다음과 같습니다.
// MoreWindows
$imgWidth = 600
$img높이 = 400
$img = imagecreatetruecolor($imgWidth, $imgHeight)
imagefill($img, 0, 0, imagecolorallocate($img, 240, 240, 240));//배경색 설정
$snowflake_size = 30
$font_file = "c:\WINDOWS\Fonts\simhei.ttf"
//큰 눈송이를 생성하는 것은 실제로 * 기호
를 출력하기 위해 imagettftext()를 호출하는 것입니다.
($i=1; $i<=400; $i )
{
$font_color = imagecolorallocate($img, mt_rand(100,200), mt_rand(100,200), mt_rand(100,200))
Imagettftext($img, $snowflake_size, mt_rand(0, 180), mt_rand(0, $imgWidth),mt_rand(0, $imgHeight), $font_color, $font_file, "□");
}
//워터마크 텍스트
$black_color = imagecolorallocate($img, 0, 0, 0)
imagettftext($img, 12, 0, $imgWidth - 50, $imgHeight - 20, $black_color, $font_file, "PHP 그리기")
이미지png($img)
이미지파괴($img)
?>
이 예제의 실행 효과는 아래 그림과 같습니다
자세한 내용은 다음을 참조하세요.
http://www.php.net/manual/zh/refs.utilspec.image.php
이 기사가 모든 사람의 PHP 프로그래밍 설계에 도움이 되기를 바랍니다.