ignore *.css.map
[wolnelektury.git] / src / catalogue / management / commands / gencover.py
index adb84ea..d4c8383 100644 (file)
@@ -12,10 +12,12 @@ class Command(BaseCommand):
     def add_arguments(self, parser):
         parser.add_argument('slug')
         parser.add_argument('size', type=int)
     def add_arguments(self, parser):
         parser.add_argument('slug')
         parser.add_argument('size', type=int)
+        parser.add_argument('--bleed', action='store_true')
 
     def handle(self, *args, **options):
         slug = options['slug']
         size = options['size']
 
     def handle(self, *args, **options):
         slug = options['slug']
         size = options['size']
+        bleed = 20 if options['bleed'] else 0
         wldoc = Book.objects.get(slug=slug).wldocument()
         wldoc = Book.objects.get(slug=slug).wldocument()
-        cover = DefaultEbookCover(wldoc.book_info, width=size)
+        cover = DefaultEbookCover(wldoc.book_info, width=size, bleed=bleed)
         cover.save('%s.jpg' % slug)
         cover.save('%s.jpg' % slug)