X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/83cae63af4330912cdb2546c195af2919afd30ac..67a177f2ec1fa2eac56e7fb07ccaf32bcd33d8ce:/src/librarian/elements/figures/ilustr.py diff --git a/src/librarian/elements/figures/ilustr.py b/src/librarian/elements/figures/ilustr.py index 3c3026c..af936fb 100644 --- a/src/librarian/elements/figures/ilustr.py +++ b/src/librarian/elements/figures/ilustr.py @@ -1,12 +1,50 @@ +import six.moves +from PIL import Image from ..base import WLElement class Ilustr(WLElement): - HTML_TAG = 'img' + EPUB_TAG = HTML_TAG = 'img' def get_html_attr(self, builder): + ## TODO: thumbnail. + + url = six.moves.urllib.parse.urljoin( + builder.base_url, + self.get('src') + ) + + imgfile = six.moves.urllib.request.urlopen(url) + img = Image.open(imgfile) + th_format, ext, media_type = { + 'GIF': ('GIF', 'gif', 'image/gif'), + 'PNG': ('PNG', 'png', 'image/png'), + }.get(img.format, ('JPEG', 'jpg', 'image/jpeg')) + + width = 1200 + if img.size[0] < width: + th = img + else: + th = img.resize((width, round(width * img.size[1] / img.size[0]))) + + buffer = six.BytesIO() + th.save(buffer, format=th_format) + imgfile.close() + file_name = 'image%d.%s' % ( + builder.assign_image_number(), + ext + ) + + builder.add_file( + content=buffer.getvalue(), + file_name=file_name, + media_type=media_type, + ) + return { - 'src': builder.base_url + self.attrib['src'], - 'alt': self.attrib['alt'], - 'title': self.attrib['alt'], + 'src': file_name, + 'alt': self.attrib.get('alt', ''), + 'title': self.attrib.get('alt', ''), } + + get_epub_attr = get_html_attr