我正在使用python谷歌应用引擎应用程序,我使用python2.5,我想处理GAE上的图像(过滤图像),最初我尝试了PIL库,我成功安装了它我测试它,它在我的计算机上正常工作,但当我在localhost上测试它(在GAE上运行)时,我有一个错误NotImplementedError: Unable to find the Python PIL library
,然后我尝试使用Images Python API处理图像,如本教程:https://developers.google.com/appengine/docs/python/images/overview,我测试了调整图像服务的大小,它运行正常,但我想要的主要应用是过滤图像,问题是:如果Image Python API支持此服务(图像过滤)在GAE?如果不能如何在GAE上过滤图像?我看到这个服务在PIL中可用并且我测试了它,但是在python2.5中GAE不支持这个库
修改
我尝试使用python2.7在GAE上使用PIL库https://developers.google.com/appengine/docs/python/python27/using27#Configuring_Libraries,我安装了PIL 1.1.7,并将 app.yaml 文件配置为:
application: app_id
version: 1
runtime: python27
api_version: 1
threadsafe: false
handlers:
- url: /.*
script: main.py
libraries:
- name: PIL
version: "1.1.7"
现在如何在main.py页面中使用此库?我尝试from PIL import Image
,但问题仍然是:
No module named PIL
args = ('No module named PIL',)
message = 'No module named PIL'
提前致谢。
答案 0 :(得分:6)
使用python2.5,PIL本身不可用。内置images module使用看起来像PIL的API,并且使用SDK(在您的计算机上)PIL用于兼容性,因此您需要安装它。文档(上一个链接)有关于如何在windows / mac / linux上执行此操作的说明。
使用python2.7,您需要configure your app在部署后使用PIL的应用引擎版本。在本地,您还需要在应用程序文件夹之外自己安装PIL。
答案 1 :(得分:3)
import PIL
import Image