← Back to team overview

phatch-dev team mailing list archive

[Bug 528702] [NEW] PIL blur is hardcoded to 2 pixels

 

Public bug reported:

Maybe this is a simple bug in ImageFilter.GaussianBlur:

class GaussianBlur(Filter):
   name = "GaussianBlur"

   def __init__(self, radius=2):
       self.radius = 2

   def filter(self, image):
       return image.gaussian_blur(self.radius)

-> We need to check if other values are possible than radius=2 and if
true, we should expose that in our blur action.

** Affects: phatch
     Importance: Low
         Status: New

** Changed in: phatch
   Importance: Undecided => Low

** Changed in: phatch
    Milestone: None => 0.2.7

-- 
PIL blur is hardcoded to 2 pixels
https://bugs.launchpad.net/bugs/528702
You received this bug notification because you are a member of Phatch
Developers, which is subscribed to Phatch.

Status in Phatch = Photo & Batch!: New

Bug description:
Maybe this is a simple bug in ImageFilter.GaussianBlur:

class GaussianBlur(Filter):
   name = "GaussianBlur"

   def __init__(self, radius=2):
       self.radius = 2

   def filter(self, image):
       return image.gaussian_blur(self.radius)

-> We need to check if other values are possible than radius=2 and if true, we should expose that in our blur action.





Follow ups

References