better_figures_and_images.py 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. """
  2. Better Figures & Images
  3. ------------------------
  4. This plugin:
  5. - Adds a style="width: ???px; height: auto;" to each image in the content
  6. - Also adds the width of the contained image to any parent div.figures.
  7. - If RESPONSIVE_IMAGES == True, also adds style="max-width: 100%;"
  8. - Corrects alt text: if alt == image filename, set alt = ''
  9. TODO: Need to add a test.py for this plugin.
  10. """
  11. from __future__ import unicode_literals
  12. from os import path, access, R_OK
  13. import os
  14. from pelican import signals
  15. from bs4 import BeautifulSoup
  16. from PIL import Image
  17. import pysvg.parser
  18. import logging
  19. logger = logging.getLogger(__name__)
  20. def content_object_init(instance):
  21. if instance._content is not None:
  22. content = instance._content
  23. soup = BeautifulSoup(content, 'html.parser')
  24. for img in soup(['img', 'object']):
  25. logger.debug('Better Fig. PATH: %s', instance.settings['PATH'])
  26. if img.name == 'img':
  27. logger.debug('Better Fig. img.src: %s', img['src'])
  28. img_path, img_filename = path.split(img['src'])
  29. else:
  30. logger.debug('Better Fig. img.data: %s', img['data'])
  31. img_path, img_filename = path.split(img['data'])
  32. logger.debug('Better Fig. img_path: %s', img_path)
  33. logger.debug('Better Fig. img_fname: %s', img_filename)
  34. # Pelican 3.5+ supports {attach} macro for auto copy, in this use case the content does not exist in output
  35. # due to the fact it has not been copied, hence we take it from the source (same as current document)
  36. if img_filename.startswith('{attach}'):
  37. img_path = os.path.dirname(instance.source_path)
  38. img_filename = img_filename[8:]
  39. src = os.path.join(img_path, img_filename)
  40. else:
  41. # Strip off {filename}, |filename| or /static
  42. if img_path.startswith(('{filename}', '|filename|')):
  43. img_path = img_path[10:]
  44. elif img_path.startswith('/static'):
  45. img_path = img_path[7:]
  46. elif img_path.startswith('data:image'):
  47. # Image is encoded in-line (not a file).
  48. continue
  49. else:
  50. logger.warning('Better Fig. Error: img_path should start with either {filename}, |filename| or /static')
  51. # search src path list
  52. # 1. Build the source image filename from PATH
  53. # 2. Build the source image filename from STATIC_PATHS
  54. # if img_path start with '/', remove it.
  55. img_path = os.path.sep.join([el for el in img_path.split("/") if len(el) > 0])
  56. # style: {filename}/static/foo/bar.png
  57. src = os.path.join(instance.settings['PATH'], img_path, img_filename)
  58. src_candidates = [src]
  59. # style: {filename}../static/foo/bar.png
  60. src_candidates += [os.path.join(instance.settings['PATH'], static_path, img_path, img_filename) for static_path in instance.settings['STATIC_PATHS']]
  61. src_candidates = [f for f in src_candidates if path.isfile(f) and access(f, R_OK)]
  62. if not src_candidates:
  63. logger.error('Better Fig. Error: image not found: %s', src)
  64. logger.debug('Better Fig. Skip src: %s', img_path + '/' + img_filename)
  65. continue
  66. src = src_candidates[0]
  67. logger.debug('Better Fig. src: %s', src)
  68. # Open the source image and query dimensions; build style string
  69. try:
  70. if img.name == 'img':
  71. im = Image.open(src)
  72. extra_style = 'width: {}px; height: auto;'.format(im.size[0])
  73. else:
  74. svg = pysvg.parser.parse(src)
  75. extra_style = 'width: {}px; height: auto;'.format(svg.get_width())
  76. except IOError as e:
  77. logger.debug('Better Fig. Failed to open: %s', src)
  78. extra_style = 'width: 100%; height: auto;'
  79. if 'RESPONSIVE_IMAGES' in instance.settings and instance.settings['RESPONSIVE_IMAGES']:
  80. extra_style += ' max-width: 100%;'
  81. if img.get('style'):
  82. img['style'] += extra_style
  83. else:
  84. img['style'] = extra_style
  85. if img.name == 'img':
  86. if img['alt'] == img['src']:
  87. img['alt'] = ''
  88. fig = img.find_parent('div', 'figure')
  89. if fig:
  90. if fig.get('style'):
  91. fig['style'] += extra_style
  92. else:
  93. fig['style'] = extra_style
  94. instance._content = soup.decode()
  95. def register():
  96. signals.content_object_init.connect(content_object_init)