** Changed in: phatch
Status: New => Confirmed
--
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!: Confirmed
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.
_______________________________________________
Mailing list: https://launchpad.net/~phatch-dev
Post to : [email protected]
Unsubscribe : https://launchpad.net/~phatch-dev
More help : https://help.launchpad.net/ListHelp