Open In App

PHP | imagechar() Function

The imagechar() function is an inbuilt function in PHP which is used to draw a character horizontally. This function draws the first character of string in the image identified by image with its x and y-axis. The coordinate of the top-left corner is (0, 0).

Syntax:



bool imagechar( $image, $font, $x, $y, $c, $color )

Parameters: This function accepts six parameters as mentioned above and described below:

Return Value: This function returns true on success or false on failure.



Below programs illustrate the imagechar() function in PHP:

Program 1:




<?php
  
// Creates image size
$image = imagecreate(400, 300);
  
$string = 'GeeksForGeeks';
  
// Set background color
$bg = imagecolorallocate($image, 0, 153, 0);
  
// Set text color.
$white = imagecolorallocate($image, 255, 255, 255);
  
// Prints a white G character
imagechar($image, 5, 190, 150, $string, $white);
  
header('Content-type: image/png');
imagepng($image);
  
?>

Output:

Program 2:




<?php
  
// Create image size
$image = imagecreate(400, 300);
  
$string = 'GeeksforGeeks';
  
// Find string length
$len = strlen($string);
  
// Set background color
$bg = imagecolorallocate($image, 0, 153, 0);
  
// Set text color
$white = imagecolorallocate($image, 255, 255, 255);
  
for($i = 0; $i < $len; $i++)
  
    // Prints white character of string using loop
    imagechar($image, 6, 190 + 10 * $i, 150, $string[$i], $white);
  
header('Content-type: image/png');
imagepng($image);
  
?>

Output:

Related Articles:

Reference: http://php.net/manual/en/function.imagechar.php


Article Tags :