PHP | Gmagick writeimage() Function Last Updated : 17 Jul, 2020 Comments Improve Suggest changes Like Article Like Report The Gmagick::writeimage() function is an inbuilt function in PHP which is used to write an image to the specified filename. Syntax: Gmagick Gmagick::writeimage( string $filename, bool $all_frames ) Parameters:This function accepts two parameters as mentioned above and described below: $filename: It specifies the name of file. $all_frames (Optional): It specifies all frames are needed. 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::writeimage() function in PHP: Program 1: Writing the image php <?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Write the image to a local folder $gmagick->writeimage('my_image.png'); echo 'Image saved successfully'; ?> Output: This will save the image successfully. Program 2: Writing the drawing php <?php // Create a new Gmagick object $gmagick = new Gmagick('geeksforgeeks.png'); // Create a GmagickDraw object $draw = new GmagickDraw(); // Set the color $draw->setFillColor('white'); // Function to draw rectangle $draw->rectangle(0, 0, 800, 400); // Set the fill color $draw->setFillColor('#1bd911'); // Set the font size $draw->setfontsize(50); // Annotate a text $draw->annotate(30, 100, 'GeeksforGeeks'); // Use of drawimage function $gmagick->drawImage($draw); // Write the image to a local folder $gmagick->writeimage('my_drawing.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.writeimage.php Comment More infoAdvertise with us Next Article PHP | Gmagick writeimage() Function G gurrrung Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Gmagick Similar Reads PHP | Imagick writeImage() Function The Imagick::writeImage() function is an inbuilt function in PHP which is used to write an image to the specified filename. This function saves the image file in the same folder where your PHP script is located. Syntax: bool Imagick::writeImage( string $filename = NULL ) Parameters: This function ac 1 min read PHP | Imagick writeImages() Function The Imagick::writeImages() function is an inbuilt function in PHP which is used to write an image or sequence of images to the specified filename. This function saves the image file in the same folder where your PHP script is located. This function supports GIF animations whereas writeImage() doesn' 2 min read PHP | Gmagick raiseimage() Function The Gmagick::raiseimage() function is an inbuilt function in PHP which is used to create a simulated three-dimensional button-like effect by creating the lightning and darkening the edges of the image. The width and height of raise_info define the width of the vertical and horizontal edge of the eff 2 min read PHP | Gmagick trimimage() function The Gmagick::trimimage() function is an inbuilt function in PHP which is used to remove edges that are the background color from the image. Syntax: Gmagick Gmagick::trimimage( float $fuzz ) Parameters:This function accepts a single parameter $fuzz which holds the fuzz. Return Value: This function re 1 min read PHP | Gmagick resizeimage() Function The Gmagick::resizeimage() function is an inbuilt function in PHP which is used to scale an image in given dimensions with a filter.Syntax:Â Â Gmagick Gmagick::resizeimage( $width, $height, $filter, $blur) Parameters: This function accepts four parameters as mentioned above and described below:Â Â $wi 2 min read Like