VOOZH about

URL: https://www.geeksforgeeks.org/python/pgmagick-blur-method-python/

⇱ Pgmagick blur() method - Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Pgmagick blur() method - Python

Last Updated : 26 May, 2020
The blur() function is an inbuilt function in the Pgmagick library which is used to to add blur filter to the image. The function returns the true value on success.
Syntax:
blur( radius, sigma )
Parameters: This function accept two parameters as mentioned above and described below:
  • radius:This parameter stores the value of the blur radius.
  • sigma: It is an optional parameter which stores the sigma of the object.
Return Value: This function returns the Pgmagick object with image added.
Input Image: 👁 Image
Example 1: Output: 👁 Image
Example 2:
Output: 👁 Image
Comment
Article Tags: