如何在没有 writing/reading 的情况下在 Python 中执行 JPEG 压缩

How to perform JPEG compression in Python without writing/reading

我想直接使用压缩的 JPEG 图像。我知道使用 PIL/Pillow 我可以在保存图像时压缩图像,然后读回压缩图像 - 例如

from PIL import Image
im1 = Image.open(IMAGE_FILE)
IMAGE_10 = os.path.join('./images/dog10.jpeg')
im1.save(IMAGE_10,"JPEG", quality=10)
im10 = Image.open(IMAGE_10)

但是,我想要一种无需无关的写入和读取即可执行此操作的方法。是否有一些 Python 包具有将图像和质量数字作为输入的功能,并且 return 具有给定质量的该图像的 jpeg 版本?

对于内存中类似文件的内容,您可以使用 StringIO。 看一看:

from io import StringIO # "import StringIO" directly in python2
from PIL import Image
im1 = Image.open(IMAGE_FILE)

# here, we create an empty string buffer    
buffer = StringIO.StringIO()
im1.save(buffer, "JPEG", quality=10)

# ... do something else ...

# write the buffer to a file to make sure it worked
with open("./photo-quality10.jpg", "w") as handle:
    handle.write(buffer.contents())

如果您检查 photo-quality10.jpg 文件,它应该是相同的图像,但 JPEG 压缩设置的质量为 10%。

使用 BytesIO

try:
    from cStringIO import StringIO as BytesIO
except ImportError:
    from io import BytesIO

def generate(self, image, format='jpeg'):
    im = self.generate_image(image)
    out = BytesIO()
    im.save(out, format=format,quality=75)
    out.seek(0)
    return out

Python3.0 中缺少 StringIO,参考:StringIO in python3