python - PIL 中的 PNG 显示在 OS X Mavericks 上损坏了吗?

标签 python macos tkinter python-imaging-library osx-mavericks

我注意到在 OS X Mavericks 中使用 ImageTk.PhotoImage 的 Tkinter 应用程序中不显示 PNG 图像。但是,GIF 和 JPEG 显示良好。没有打印错误或抛出异常,调试代码显示图像已读取并且具有正确的高度和宽度。这是一个简化的示例:

import Tkinter
from PIL import Image, ImageTk

logo_file = 'test.png'
#logo_file = 'test.gif'


class Application(Tkinter.Frame):
    def __init__(self, master):
        Tkinter.Frame.__init__(self, master)
        self.master.minsize(width=512, height=256)
        self.master.config()

        self.pack()

        self.main_frame = Tkinter.Frame()
        self.some_image = ImageTk.PhotoImage(Image.open(logo_file))

        some_label = Tkinter.Label(self.main_frame, image=self.some_image)
        some_label.config()
        some_label.pack(side='top')

        self.main_frame.place(in_=self.master, anchor='c', relx=.5, rely=.5)

root = Tkinter.Tk()
app = Application(root)
app.mainloop()

如果您使用 GIF 图像将显示,但使用 PNG 则不会。同样,这只发生在 OS X Mavericks 上,Mountain Lion 工作正常。我试过重新安装(编译 PIL),但没有成功,也尝试过新的 virtualenv。

在创建/保存 PNG 时,我是否需要正确设置某些 PNG 属性?或者这是 PIL 或 Tkinter 或 OS X 中的错误?

更新以添加一些细节

我正在使用:

  • Python 2.7.5 (/usr/bin/python)
  • PIL 1.1.7(使用pip编译)

这是在刚从 Mountain Lion 更新到 Mavericks 的机器上,之前安装了 PIL,我没有弄乱 Apple 提供的系统 Python。

更新 2 Pillow 设置摘要

我安装了 Pillow 2.2.1,它说它支持 PNG:

--------------------------------------------------------------------
PIL SETUP SUMMARY
--------------------------------------------------------------------
version      Pillow 2.2.1
platform     darwin 2.7.5 (default, Aug 25 2013, 00:04:04)
             [GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)]
--------------------------------------------------------------------
--- TKINTER support available
--- JPEG support available
--- ZLIB (PNG/ZIP) support available
--- TIFF G3/G4 (experimental) support available
--- FREETYPE2 support available
*** LITTLECMS support not available
*** WEBP support not available
*** WEBPMUX support not available
--------------------------------------------------------------------

我还使用 brew (libpng 1.5.14) 卸载并重新安装了 libpng。然后我重新安装了 Pillow 以确保它是用它构建的,尽管我认为它使用 zlib。

尝试构建 Python 2.7.5 的更新 3

也许问题出在 zlib,试图编译 Python 2.7.5 我明白了:

Python build finished, but the necessary bits to build these modules were not found:
_bsddb             _sqlite3           _ssl             
bsddb185           dbm                dl               
gdbm               imageop         linuxaudiodev    
nis                ossaudiodev        readline        
spwd               sunaudiodev        zlib
To find the necessary bits, look in setup.py in detect_modules() for the module's name.


Failed to build these modules:
_tkinter

最佳答案

我认为你的问题是你的 PIL 是在你的 Mavericks 机器上没有 PNG 支持或者只有部分 PNG 支持的情况下构建的。

如果 PIL 无法在它想要的地方同时找到 libpng 和 libz,您将无法获得完整的 PNG 支持。在从 Mountain Lion 升级到 Mavericks 之后,这有时似乎是个问题。

可能与您遇到的问题不同。例如,这可能归因于 Apple 再次使用有缺陷的 Tcl/Tk 版本(就像他们在 Snow Leopard 中臭名昭著的做法)。但这绝对值得一试。

Pillow ,以及一些老式 PIL 版本(但实际上,如果您不使用 Pillow,您几乎肯定应该使用),安装过程的末尾会为您提供一个友好的“PIL SETUP SUMMARY”部分,向您展示所有重要的配置内容。

我在本地构建的 Python 3.3.2 上使用 Pillow 2.2.1 时遇到了完全相同的问题。我使用 Homebrew 解决了它安装 libpng,然后重建 Pillow:

$ brew install libpng
$ pip-3.3 uninstall pillow
$ pip-3.3 install pillow

关于python - PIL 中的 PNG 显示在 OS X Mavericks 上损坏了吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19596717/

相关文章:

python - 如何总结列表的数量

c++ - 使用包含OpenCV的cmake构建MacOS可执行文件进行分发

python - 在拖动事件中,所有选定的按钮都应在 Tkinter Python 中着色

python - 尝试创建同一类的多个实例时,无法 pickle _tkinter.tkapp 对象错误

python tkinter : unresolved functions of text widget

Python 单元测试 : AttributeError: no attribute 'assertTrue' when running on Linux

python - pygeocoder 模块不工作

c# - 如何处理使用(Py.GIL()) block pythonnet中的异常

c++ - Homebrew 软件安装 g++ 4.7 不工作

swift:等到电源改变(mac)