5
我想在PIL中擴展「Image」類。如何擴展Image類?
#module Image
def open(file): ...
class Image:
def method1:...
def method2:...
#module myOriginal
from Image import Image
class ExtendedImage(Image):
def method3:...
#module test
import myOriginal
im = myOriginal.open("picture.jpg")
結果:Error.myOriginal沒有屬性「open」。
如何在不重寫open()方法的情況下擴展Image類?
類Image.Image!中沒有open()方法嗎? – mouad 2011-03-02 09:06:32