如何使用python检查目录中所有图像的尺寸?

新手上路,请多包涵

我需要检查目录中图像的尺寸。目前它有大约 700 张图像。我只需要检查尺寸,如果尺寸与给定尺寸不匹配,它将被移动到不同的文件夹。我该如何开始?

原文由 john2x 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 396
2 个回答

您可以使用 Python 图像库(又名 PIL)读取图像标题并查询尺寸。

一种方法是自己编写一个函数,该函数采用文件名并返回维度(使用 PIL)。然后用 os.path.walk 函数遍历目录下的所有文件,应用这个函数。收集结果,您可以构建一个映射字典 filename -> dimensions ,然后使用列表推导(参见 itertools )过滤掉那些与所需大小不匹配的映射。

原文由 gavinb 发布,翻译遵循 CC BY-SA 2.5 许可协议

如果您不需要 PIL 的其余部分而只需要 PNG、JPEG 和 GIF 的图像尺寸,那么这个小函数(BSD 许可)可以很好地完成工作:

http://code.google.com/p/bfg-pages/source/browse/trunk/pages/getimageinfo.py

 import StringIO
import struct

def getImageInfo(data):
    data = str(data)
    size = len(data)
    height = -1
    width = -1
    content_type = ''

    # handle GIFs
    if (size >= 10) and data[:6] in ('GIF87a', 'GIF89a'):
        # Check to see if content_type is correct
        content_type = 'image/gif'
        w, h = struct.unpack("<HH", data[6:10])
        width = int(w)
        height = int(h)

    # See PNG 2. Edition spec (http://www.w3.org/TR/PNG/)
    # Bytes 0-7 are below, 4-byte chunk length, then 'IHDR'
    # and finally the 4-byte width, height
    elif ((size >= 24) and data.startswith('\211PNG\r\n\032\n')
          and (data[12:16] == 'IHDR')):
        content_type = 'image/png'
        w, h = struct.unpack(">LL", data[16:24])
        width = int(w)
        height = int(h)

    # Maybe this is for an older PNG version.
    elif (size >= 16) and data.startswith('\211PNG\r\n\032\n'):
        # Check to see if we have the right content type
        content_type = 'image/png'
        w, h = struct.unpack(">LL", data[8:16])
        width = int(w)
        height = int(h)

    # handle JPEGs
    elif (size >= 2) and data.startswith('\377\330'):
        content_type = 'image/jpeg'
        jpeg = StringIO.StringIO(data)
        jpeg.read(2)
        b = jpeg.read(1)
        try:
            while (b and ord(b) != 0xDA):
                while (ord(b) != 0xFF): b = jpeg.read(1)
                while (ord(b) == 0xFF): b = jpeg.read(1)
                if (ord(b) >= 0xC0 and ord(b) <= 0xC3):
                    jpeg.read(3)
                    h, w = struct.unpack(">HH", jpeg.read(4))
                    break
                else:
                    jpeg.read(int(struct.unpack(">H", jpeg.read(2))[0])-2)
                b = jpeg.read(1)
            width = int(w)
            height = int(h)
        except struct.error:
            pass
        except ValueError:
            pass

    return content_type, width, height

原文由 John Slade 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题