parser.add_argument('--width', type=int)
parser.add_argument('--height', type=int)
parser.add_argument('--bleed', action='store_true')
+ parser.add_argument('--cover-class', type=str)
def handle(self, *args, **options):
slug = options['slug']
width = options['width']
height = options.get('height')
+ cover_class = options.get('cover_class')
bleed = 20 if options['bleed'] else 0
wldoc = Book.objects.get(slug=slug).wldocument()
- cover = make_cover(wldoc.book_info, width=width, height=height, bleed=bleed)
+ kwargs = {}
+ if cover_class:
+ kwargs['cover_class'] = cover_class
+ cover = make_cover(wldoc.book_info, width=width, height=height, bleed=bleed, **kwargs)
cover.save('%s.jpg' % slug)