Pgmagick write() method - Python Last Updated : 26 May, 2020 Comments Improve Suggest changes Like Article Like Report The write() function is an inbuilt function in the Pgmagick library which is used to write an intermediate image. The current image is written to the specified filename and then processing continues using that image. Syntax: write(filename) Parameters: This function accepts single parameter which is mentioned above and defined below: filename: This parameter is used to specify the name of the processed image. Return Value: This function returns the Pgmagick object. Example 1: Python3 from pgmagick import Image, DrawableCircle, DrawableText from pgmagick import Geometry, Color # draw the image of dimension 600 * 600 img = Image((600, 600), "gradient:# ffffff-# 12323e") # invoke write function along with filename img.write('1_a.png') Output: Example 2: Python3 from pgmagick import Image, DrawableCircle, DrawableText from pgmagick import Geometry, Color # Draw image of dimension 600 * 600 having background green im = Image(Geometry(600, 600), Color("# 32CD32")) # invoke DrawableCircle() function circle = DrawableCircle(100, 100, 300, 20) # invoke draw() function im.draw(circle) # set font size to 40px im.fontPointsize(40) # invoke DrawableText() function text = DrawableText(250, 450, "GeeksForGeeks") # invoke draw() function im.draw(text) # invoke write function along with filename im.write('1_b.png') Output: Reference: http://www.graphicsmagick.org/Magick++/ Comment More infoAdvertise with us Next Article Pgmagick write() method - Python S sarthak_ishu11 Follow Improve Article Tags : Python Image-Processing Python-pgmagick Practice Tags : python Similar Reads Pgmagick resize() method - Python The resize() function is an inbuilt function in the Pgmagick library which is used to resize an image. The function returns the true value on success. Syntax: resize('widthxheight') Parameters: This function accepts the string of width and height formatted as 'widthxheight' which depicts the dimensi 1 min read Python | os.write() method OS module in Python provides functions for interacting with the operating system. OS comes under Pythonâs standard utility modules. This module provides a portable way of using operating system dependent functionality. os.write() method in Python is used to write a bytestring to the given file descr 2 min read Pgmagick flop() method - Python The flop() function is an inbuilt function in the Pgmagick library which is used to create a mirror image in horizontal direction. The function returns the true value on success. Syntax: flip() Parameters: This function does not accepts any parameter. Return Value: This function returns the Pgmagick 1 min read Pgmagick flip() method - Python The flip() function is an inbuilt function in the Pgmagick library which is used to create a mirror image in vertical direction. The function returns the true value on success. Syntax: flip() Parameters: This function does not accepts any parameter. Return Value: This function returns the Pgmagick o 1 min read Python | os.writev() method OS module in Python provides functions for interacting with the operating system. OS comes under Pythonâs standard utility modules. This module provides a portable way of using operating system dependent functionality. os.writev() method in Python is used to write the contents of specified buffers t 2 min read Like