Open In App

PHP | imagegd() function

Improve
Improve
Like Article
Like
Save
Share
Report

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:

  • $image: It specifies the image to be worked upon.
  • $to (Optional): It specifies the path to save the file to.

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




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




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


Last Updated : 18 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads