使用python 2.4调整图像大小:未安装_imaging C模块

时间:2011-01-06 11:25:29

标签: python python-imaging-library python-2.4

如何使用python 2.4版本调整图像大小。我正在尝试将其设为缩略图

我已下载了PIL librrary,但遇到了与https://stackoverflow.com/questions/4134966/problem-in-the-installed-pil相同的问题。

还有其他方法可以调整图像大小

from PIL import Image
import glob, os

size = 40, 40

for infile in glob.glob("*.jpg"):
  file, ext = os.path.splitext(infile)
  im = Image.open(infile)
  im.thumbnail(size, Image.ANTIALIAS)
  im.save(file + ".thumbnail", "JPEG")

raise ImportError("The _imaging C module is not installed")

1 个答案:

答案 0 :(得分:1)

我认为这是同一个问题:PIL error: The _imaging C module is not installed

我希望它能解决你的问题!