mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Bug fixed wrt greyscale conversion
This commit is contained in:
parent
c82cfc86df
commit
1e0fdd8a6b
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ def null(img, x, y):
|
|||
return img
|
||||
|
||||
def mono2grey(img, x, y):
|
||||
imageop.mono2grey(img, x, y, 0, 255)
|
||||
return imageop.mono2grey(img, x, y, 0, 255)
|
||||
|
||||
converters = [ \
|
||||
('grey', 'grey4', imageop.grey2grey4, LOSSY), \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue