我想为所有继承自imagekit.specs.ImageSpec
.
这个想法是允许管理界面的用户选择要添加到图片的 ImageSpec。
IE:
class Display(ImageSpec):
pre_cache = True
increment_count = True
processors = [ResizeDisplay,]
class SingleDisplay(ImageSpec):
pre_cache = True
increment_count = True
processors = [SingleDisplayResize]
class Reflection(ImageSpec):
increment_count = True
processors = [ResizeDisplay, ReflectionProcessor]
class SingleDisplayReflection(ImageSpec):
increment_count = True
processors = [SingleDisplayResize, ReflectionProcessor]
导致下拉列表“显示,单显示,反射,单显示反射”