OS4 DepotLogo by invent 
(anonymous IP: 44.200.196.114,2188) 
 HomeRecentStatsSearchSubmitUploadsMirrorsContactInfoDisclaimerConfigAdmin
 Menu

 Features
   Crashlogs
   Bug tracker
   Locale browser
 

 Categories

   o Audio (343)
   o Datatype (51)
   o Demo (203)
   o Development (595)
   o Document (22)
   o Driver (97)
   o Emulation (147)
   o Game (1000)
   o Graphics (497)
   o Library (115)
   o Network (232)
   o Office (66)
   o Utility (922)
   o Video (69)

Total files: 4359

Full index file
Recent index file

 Links

  Amigans.net
  OpenAmiga
  Aminet
  IntuitionBase


Support the site


 File comments for:  Development » Library » Misc » pil.lha

Pil

Description: Python Imaging Library
Download: pil.lha
Version: 1.1.7
Date: 21 Aug 2012
Category: development/library/misc
FileID: 7341
RSS Feed url: http://os4depot.net/modules/comments/rssfeed.php?file=development/library/misc/pil.lha

[Back to readme page]   [Add Comment]   [Refresh page]

Comment by: Petrol (81.80.55.177)At: 03 Mar 2020, 11:32File version: 1.1.7
Hi,

I've trued to apply differents gaussian blur to a picture via the imagefilter module and the results were allways the same blur effect. I looked into the imagefilter.py file :

# Gaussian blur filter.

class GaussianBlur(Filter):
name = "GaussianBlur"

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

So I replaced this line in order to apply a custom radius to the GaussianBlur filter:
self.radius = 2
by
self.radius = radius

Regards,
 
 

Copyright © 2004-2024 by Björn Hagström All Rights Reserved