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

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

王林
王林앞으로
2023-09-05 09:33:041228검색

imagestring()은 문자열을 가로로 그리는 PHP 내장 함수입니다.

Syntax

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

Parameters

imagestring()은 6개의 서로 다른 매개변수($image, $font, $x, $y, $string 및 $)를 허용합니다. 색상.

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

  • $font$font 매개변수는 글꼴 크기 값을 1, 2, 3, 4 및 5로 설정하는 데 사용됩니다.

    내장 글꼴의 경우.

  • $x - 가로 X축, 왼쪽 위 모서리에서 글꼴 위치를 유지합니다.

  • $y - 세로 Y축 위쪽에서 글꼴 위치를 유지합니다.

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

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

반환 값

imagestring() 성공하면 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);
?>

Output

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);
?>

Output

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

위 내용은 PHP에서 imagestring() 함수를 사용하여 텍스트 문자열 이미지를 가로로 그리는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제