我正在編寫一個Python應用程序,我需要執行一些圖像任務。ImageOps.unsharp_mask在PIL上不工作
我在嘗試PIL,它是ImageOps模塊。但它看起來unsharp_mask方法不能正常工作。它應該返回另一個圖像,但返回一個ImagingCore對象,我不知道它是什麼。
下面是一些代碼:
import Image
import ImageOps
file = '/home/phius/test.jpg'
img = Image.open(file)
img = ImageOps.unsharp_mask(img)
#This fails with AttributeError: save
img.save(file)
我堅持這一點。
我需要什麼:能夠像PIL的autocontrast
和unsharp_mask
那樣做一些圖像微調,並重新調整大小,旋轉和以jpg格式導出來控制質量級別。
非常感謝你,羅裏。其他的事情(旋轉,保存質量)我已經在做,只是張貼,以防有人搶奪另一個圖書館。 =) – Phius 2012-08-01 04:32:25