image_proc.py 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. import os
  2. import pathlib
  3. import subprocess
  4. def render_svg(svg_in, png_out, renderer, size):
  5. """
  6. Export a single SVG to a PNG based on the user's renderer choice.
  7. """
  8. if renderer == 'inkscape':
  9. cmd = ['inkscape', os.path.abspath(svg_in),
  10. '--export-png=' + os.path.abspath(png_out),
  11. '-h', str(size), '-w', str(size)]
  12. elif renderer == 'rendersvg':
  13. cmd = ['rendersvg', '-w', str(size), '-h', str(size),
  14. os.path.abspath(svg_in), os.path.abspath(png_out)]
  15. elif renderer == 'imagemagick':
  16. cmd = ['convert', '-background', 'none', '-density', str(size / 32 * 128),
  17. '-resize', str(size) + 'x' + str(size), os.path.abspath(svg_in), os.path.abspath(png_out)]
  18. else:
  19. raise AssertionError
  20. try:
  21. r = subprocess.run(cmd, stdout=subprocess.DEVNULL).returncode
  22. except Exception as e:
  23. raise Exception('Rasteriser invocation failed: ' + str(e))
  24. if r:
  25. raise Exception('Rasteriser returned error code: ' + str(r))
  26. def convert_webp(png_in, webp_out):
  27. """
  28. Converts a PNG at `png_in` to a Lossless WebP at `webp_out`.
  29. Will raise an exception if trying to invoke the converter failed.
  30. """
  31. cmd = ['cwebp', '-lossless', '-quiet', os.path.abspath(png_in), '-o', os.path.abspath(webp_out)]
  32. try:
  33. r = subprocess.run(cmd, stdout=subprocess.DEVNULL).returncode
  34. except Exception as e:
  35. raise Exception('Invoking the WebP converter (cwebp) failed: ' + str(e))
  36. if r:
  37. raise Exception('The WebP converter returned the following: ' + str(r))
  38. def convert_avif(png_in, avif_out):
  39. """
  40. Converts a single PNG at `png_in` to a Lossless AVIF at `avif_out`.
  41. Will raise an exception if trying to invoke the converter failed.
  42. """
  43. cmd = ['avif', '-e', os.path.abspath(png_in), '-o', os.path.abspath(avif_out), '--lossless']
  44. try:
  45. r = subprocess.run(cmd, stdout=subprocess.DEVNULL).returncode
  46. except Exception as e:
  47. raise Exception('Invoking the AVIF converter (avif) failed: ' + str(e))
  48. if r:
  49. raise Exception('The AVIF converter returned the following: ' + str(r))
  50. def convert_flif(png_in, flif_out):
  51. """
  52. Converts a single PNG at `png_in` to a FLIF at `flif_out`.
  53. Will raise an exception if trying to invoke the converter failed.
  54. """
  55. cmd = ['flif', '-e', '--overwrite', '-Q100', os.path.abspath(png_in), os.path.abspath(flif_out)]
  56. try:
  57. r = subprocess.run(cmd, stdout=subprocess.DEVNULL).returncode
  58. except Exception as e:
  59. raise Exception('Invoking the FLIF converter (flif) failed: ' + str(e))
  60. if r:
  61. raise Exception('The FLIF converter returned the following: ' + str(r))
  62. def optimise_svg(svg_in, svgo_out):
  63. """
  64. Optimises a single SVG at `svg_in` to `svgo_out`.
  65. Will raise an exception if trying to invoke the optimiser failed.
  66. """
  67. cmd = ['svgcleaner', os.path.abspath(svg_in), os.path.abspath(svgo_out), '--remove-metadata=no', '--quiet']
  68. try:
  69. r = subprocess.run(cmd, stdout=subprocess.DEVNULL).returncode
  70. except Exception as e:
  71. raise Exception('Invoking the SVG optimiser (svgcleaner) failed: ' + str(e))
  72. if r:
  73. raise Exception('The SVG optimiser returned the following: ' + str(r))
  74. def crush_png(png_in, pngc_out):
  75. """
  76. Crushes a single PNG at `png_in` to `png_out`.
  77. Will raise an exception if trying to invoke the optimiser failed.
  78. """
  79. cmd = ['oxipng', os.path.abspath(png_in), '--out', os.path.abspath(pngc_out), '--quiet']
  80. try:
  81. r = subprocess.run(cmd, stdout=subprocess.DEVNULL).returncode
  82. except Exception as e:
  83. raise Exception('Invoking the PNG crusher (oxipng) failed: ' + str(e))
  84. if r:
  85. raise Exception('The PNG crusher returned the following: ' + str(r))
  86. def batch_add_exif_metadata(paths, metadata, max_batch=1000):
  87. """
  88. Adds EXIF license metadata to an image file in batches.
  89. (This is done in batches because exiftool is far more performant
  90. this way than if it was done invidually)
  91. 'paths' is a list of paths of image files to have EXIF
  92. metadata applied to them.
  93. 'max_batch' is how many input images you can feed in one command
  94. because some operating systems have different restrictions.
  95. """
  96. cmd = ['exiftool']
  97. for tag, val in metadata.items():
  98. cmd.append('-{}={}'.format(tag, val))
  99. cmd.append('-overwrite_original')
  100. remaining = list(paths)
  101. while remaining:
  102. batch, remaining = remaining[:max_batch], remaining[max_batch:]
  103. try:
  104. r = subprocess.run(cmd + batch,
  105. stdout=subprocess.DEVNULL).returncode
  106. except Exception as e:
  107. raise Exception('Invoking the EXIF metadata embedding tool (exiftool) failed: ' + str(e))
  108. if r:
  109. raise Exception('exiftool returned error code: ' + str(r))