We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
process_image()
1 parent 6ea07fc commit b4ed367Copy full SHA for b4ed367
pelican/plugins/image_process/image_process.py
@@ -719,6 +719,12 @@ def try_open_image(path):
719
720
721
def process_image(image, settings):
722
+ """Actually process the image.
723
+
724
+ Copies over the Exif tags, if ExifTool is available.
725
726
+ Returns (int, int): tuple of the width and height of the resulting image.
727
+ """
728
# remove URL encoding to get to physical filenames
729
image = list(image)
730
image[0] = unquote(image[0])
0 commit comments