The Gmagick::write() function is an inbuilt function in PHP which is used to write an image to the specified filename. This is an alias of Gmagick::writeimage() function.
Syntax:
Gmagick Gmagick::write( string $filename )
Parameters: This function accepts a single parameter $filename which holds the name of the file.
Return Value: This function returns TRUE on success.
Exceptions: This function throws GmagickException on error.
Used Image: To capture the canvas area

Below given programs illustrate the Gmagick::write() function in PHP:
Program 1: Writing the image.
<?php
$gmagick = new Gmagick( 'geeksforgeeks.png' );
$gmagick ->write( 'my_image_name.png' );
echo 'Image saved successfully' ;
?>
|
Output: This will save the image successfully.
Image saved successfully
Program 2: Writing the drawing
<?php
$gmagick = new Gmagick( 'geeksforgeeks.png' );
$draw = new GmagickDraw();
$draw ->setFillColor( 'white' );
$draw ->rectangle(0, 0, 800, 400);
$draw ->setFillColor( '#1bd911' );
$draw ->setfontsize(50);
$draw ->annotate(30, 100, 'GeeksforGeeks' );
$gmagick ->drawImage( $draw );
$gmagick ->write( 'my_drawing_name.png' );
echo 'Image saved successfully' ;
?>
|
Output: This will save the drawing in the local folder.
Image saved successfully
Reference: https://www.php.net/manual/en/gmagick.write.php