Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP에서 imagestring() 함수를 사용하여 텍스트 문자열 이미지를 가로로 그리는 방법은 무엇입니까?

<시간/>

이미지 문자열() 문자열을 가로로 그리는 데 사용되는 PHP의 내장 함수입니다.

구문

bool imagestring($image, $font, $x, $y, $string, $color)

매개변수

이미지 문자열() $image, $font, $x, $y, $string 및 $color의 6가지 매개변수를 허용합니다.

  • $이미지 − $image 매개변수는 imagecreatetruecolor() 함수를 사용하여 주어진 크기의 빈 이미지를 만듭니다.

  • $글꼴 − $font 매개변수는 내장 글꼴에 대해 1, 2, 3, 4, 5의 글꼴 크기 값을 설정하는 데 사용됩니다.

  • $x − 가장 왼쪽 상단 모서리의 가로 X축에서 글꼴의 위치를 ​​유지합니다.

  • $y − 수직 Y축, 최상단 모서리에서 글꼴의 위치를 ​​유지합니다.

  • $string − $string 매개변수는 작성할 문자열을 보유합니다.

  • $color − 이 매개변수는 이미지의 색상을 유지합니다.

반환 값

이미지 문자열() 성공하면 True, 실패하면 False를 반환합니다.

예시 1

<?php
   // Create the size and image by using imagecreate() function.
   $img = imagecreate(700, 300);

   // Set the background color of the image
   $background_color = imagecolorallocate($img, 0, 0, 255);

   // Set the text color of the image
   $text_color = imagecolorallocate($img, 255, 255, 255);

   // Function to create an image that contains the string.
   imagestring($img, 50, 180, 150, "Tutorialspoint", $text_color);
   imagestring($img, 30, 160, 120, "Simply Easy Learning", $text_color);
   header("Content-Type: image/png");
   imagepng($img);
   imagedestroy($img);
?>

출력

PHP에서 imagestring() 함수를 사용하여 텍스트 문자열 이미지를 가로로 그리는 방법은 무엇입니까?

예시 2

<?php
   // Create the size of the image or blank image
   $img = imagecreate(700, 300);

   // Set the background color of the image
   $background_color = imagecolorallocate($img, 122, 122, 122);

   // Set the text color of the image
   $text_color = imagecolorallocate($img, 255, 255, 0);

   // Function to create an image that contains a string.
   imagestring($img, 10, 30, 60,"Tutorialspoint:Simply Easy Learning", $text_color);
   header("Content-Type: image/png");
   imagepng($img);
   imagedestroy($img);
?>

출력

PHP에서 imagestring() 함수를 사용하여 텍스트 문자열 이미지를 가로로 그리는 방법은 무엇입니까?