Pgmagick resize() method - Python Last Updated : 26 May, 2020 Comments Improve Suggest changes Like Article Like Report 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 dimensions of the final image. Return Value: This function returns the Pgmagick object with image added. Input Image: Example 1: Python3 # import library from pgmagick import Image, DrawableCircle, DrawableText from pgmagick import Geometry, Color # draw the image of dimension 600 * 600 img = Image('input.png') # invoke resize() function img.resize('100x100') # invoke write function along with filename img.write('2_a.png') Output: Example 2: Python3 # import library 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 resize() function im.resize('500x500') # invoke write function along with filename im.write('1_b.png') Output: Comment More infoAdvertise with us Next Article Pgmagick resize() method - Python sarthak_ishu11 Follow Improve Article Tags : Python Image-Processing Python-pgmagick Practice Tags : python Similar Reads Pgmagick write() method - Python 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 1 min read Pgmagick solarize() method - Python The solarize() function is an inbuilt function in the Pgmagick library that is used to negate all pixels above the threshold level. The function returns the true value on success. Syntax: solarize(thresholdLevel) Parameters: This function accepts a single parameter thresholdlevel which is used to sp 1 min read Python PIL | Image.resize() method PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The Image module provides a class with the same name which is used to represent a PIL image. The module also provides a number of factory functions, including functions to load images from files, 4 min read Pgmagick implode() method - Python The implode() function is an inbuilt function in the Pgmagick library which is used to implode image pixels about the center. The function returns the true value on success. Syntax: implode(factor) Parameters: This function accepts single parameter as mentioned above and described below: factor: Thi 2 min read Pgmagick equalize() method - Python The equalize() function is an inbuilt function in the Pgmagick library which is used to perform histogram equalization to the image. Syntax: equalize() Parameters: This function does not accept any parameters.Return Value: This function returns the Pgmagick object with image added. Input Image: Exam 1 min read Like