else:
th = img.resize((width, round(width * img.size[1] / img.size[0])))
- imgfile.close()
buffer = six.BytesIO()
th.save(buffer, format=th_format)
- ## TODO: Counter
+ imgfile.close()
file_name = 'image%d.%s' % (
builder.assign_image_number(),
ext
return {
'src': file_name,
- 'alt': self.attrib['alt'],
- 'title': self.attrib['alt'],
+ 'alt': self.attrib.get('alt', ''),
+ 'title': self.attrib.get('alt', ''),
}
get_epub_attr = get_html_attr