def __init__(self, width, height, illustrators, fun=ImageChops.multiply):
self.width = width
self.height = height
self.illustrators = illustrators
if isinstance(fun, str):
fun = getattr(ImageChops, fun)
self.fun = fun
评论列表
文章目录