Windows 与 Django 的枕头图像问题
Pillow image issues on Windows with Django
我已经在我的 venv 中通过 pip 安装了 Pillow 2.9.0。当我尝试在 Django REST 框架中上传 PNG 图像时,出现如下错误
"Upload a valid image. The file you uploaded was either not an image or a corrupted image."
但是图像没有任何问题。 JPG 图像给出相同的结果。我是否错过了任何模块?
我必须以二进制模式上传图像,这意味着在打开文件时将我的测试用例中的 'r' 更改为 'rb'。
我已经在我的 venv 中通过 pip 安装了 Pillow 2.9.0。当我尝试在 Django REST 框架中上传 PNG 图像时,出现如下错误
"Upload a valid image. The file you uploaded was either not an image or a corrupted image."
但是图像没有任何问题。 JPG 图像给出相同的结果。我是否错过了任何模块?
我必须以二进制模式上传图像,这意味着在打开文件时将我的测试用例中的 'r' 更改为 'rb'。