Open In App

PHP | imagegd() function

The imagegd() function is an inbuilt function in PHP which is used to output GD image to browser or file. This is most useful to convert any other image type to gd. imagecreatefromgd() function can be used to further read gd images. 

Syntax:



bool imagegd( resource $image, float $to)

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

Return Value: This function returns TRUE on success or FALSE on failure. 



Exceptions: This function throws Exception on error. 

Below given programs illustrate the imagegd() function in PHP: 
Program 1 (Viewing a GD file): 




<?php
// Create a blank image and add text
$im = imagecreatetruecolor(100, 100);
$text_color = imagecolorallocate($im, 10, 10, 51);
imagestring($im, 0, 20, 20,  "GeeksforGeeks", $text_color);
 
// Output the image as string
imagegd($im);
?>

Output:

This will output the image in the form of string as gd isn't supported in browser.

Program 2 (Convert images into gd): 




<?php
// Create a image from png
 
// Convert into GD and save to the same folder
imagegd($image, 'geeksforgeeks.gd');
?>

Output:

This will save a image with name geeksforgeeks.gd in the same folder.

Reference: https://www.php.net/manual/en/function.imagegd.php

Article Tags :