X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/c1000fe83b652dcd85b8fc57b60567e3d93aa5c9..13480b3da2d3da87f1d99c6d340c1553ca9d89c1:/scripts/book2cover diff --git a/scripts/book2cover b/scripts/book2cover index 6cda7b3..977096e 100755 --- a/scripts/book2cover +++ b/scripts/book2cover @@ -4,27 +4,23 @@ # This file is part of Librarian, licensed under GNU Affero GPLv3 or later. # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. # -from StringIO import StringIO -from librarian import OutputFile from librarian.book2anything import Book2Anything, Option +from librarian.formats.cover.wolnelektury import WLCover class Book2Cover(Book2Anything): - format_name = "JPEG" - ext = "jpg" - uses_cover = True - cover_optional = False - transform_options = [ + format_cls = WLCover + + format_options = [ Option('-W', '--width', action='store', type='int', dest='width', default=None, help='Set width.'), Option('-H', '--height', action='store', type='int', dest='height', default=None, help='Set height.'), + Option('-l', '--with-logo', dest='with_logo', + action='store_true', default=False, + help='Add WL logo in white box.'), ] - @staticmethod - def transform(wldoc, cover, *args, **kwargs): - return wldoc.as_cover(cover_class=cover, *args, **kwargs) - if __name__ == '__main__': Book2Cover.run()