Python:打开PSD图像(Django表单)

时间:2016-03-27 10:26:31

标签: python django python-imaging-library psd

有没有办法在清理其表单字段时获取PSD图像的大小和内容类型?
Image.open()引发了这个错误:

IOError: cannot identify image file <InMemoryUploadedFile: Untitled-1.psd (image/vnd.adobe.photoshop)>

1 个答案:

答案 0 :(得分:0)

看起来问题可能是因为文件仍在内存中。通过在互联网上保存的PSD示例,我可以使用file命令返回以下内容:

$ file 05.psd 
05.psd: Adobe Photoshop Image, 800 x 800, RGB, 3x 8-bit channels

因此,我认为您需要在&#34;清理时间&#34;中将文件保存到文件系统,然后使用Image进行分析。