views:

1063

answers:

10

Hello,
I'm trying to use a JPEG image in a QImage object from a Python script, with PyQt4.

The script itself works perfectly, the image loads and can be manipulated and rendered and all. However, when I try to "compile" (compyle?) this script with py2exe, everything works but the JPEG image. Replacing it with a PNG equivalent works, but since my program downloads images from the web, they won't always be in PNG format and I can't afford converting them all with another library.
I've discovered that JPEG image support for QImage, along with other image formats, is provided by some DLLs in the \qt\plugins\imageformats directory (they're called qjpeg4.dll and qjpeg4d.dll). I think I need to use them somehow in my executable, but I don't know how. I've tried simply copying them to my exe directory, no luck. I've tried, as http://mail.python.org/pipermail/python-list/2006-June/557926.html says, to include those files as data_files in the setup.py script, but no luck (it looks like all it does is copying these files to the exe's directory, so it changes nothing from copying them manually anyway).
(Sorry, had to un-linkify the link because of the silly rule that prevents new users from posting hyperlinks.)

I'm sure there's a handful of applications out there using PyQt with JPEG images, how do they do it? It seemed like a trivial task but I'm stuck on it now.

Also, I want my app to be cross-platform (why else would I be coding in Python?), I hope I won't run into such packaging trouble (it's not the only one) when packaging for OS X or Linux. Will I?

+1  A: 

I'll have to confess I never managed to get the py2exe + pyqt combination quite right (and, py2exe doesn't help at all with cross-platform packaging). PyInstaller seems to be much better -- the docs at http://www.pyinstaller.org/ are old, but the svn trunk is much more recent. Some docs are in slides given at the recent Pycon Italia Tre conference -- http://www.pycon.it/static/stuff/slides/distribuire-programmi-python-con-pyinstaller.pdf -- and, the slides are in English, and contain the current maintainer's email, so they should help! (And, let's all lobby the current maintainer to update the docs...!-)

Alex Martelli
No luck. I grabbed the latest SVN snapshot of PyInstaller and it was able to compile my program, but it had no JPEG support andhad none of the imageformats plugins despite the SupportedPackages page's claim that they're fully supported. But PyInstaller's way of detecting Qt's plugins dir is broken and returned an invalid path, which I fixed by creating a symlink (or "junction" as they're called on NTFS). I gave the script another try, and this time it did detect the Qt4 plugins and copied them to the exe's directory, but upon running the exe again, still no JPEG support! :(
Etienne Perot
A: 

Try adding a qt.conf file to your exe's directory, to tell qt where to find binaries and plugins.

Something like the following works for the simple case, where you just dump all dll's in the same dir as the exe:

[Paths]
Prefix = .
Plugins = .

Update: Then copy your plugins-contents (the imageformat/sqldriver directories etc) to the exe dir. I don't think you can load plugin dlls from the same directory as the exe. See Qt plugin doc for details on plugon subdirectories. (Or, leave out the 'plugins = .' and copy the plugins dir to the exe dir, so you have /plugins/imageloaders/qjpeg4.dll).

Marcus Lindblom
Yeah, I tried that too, but still nothing :( Only PNG images load.I'm thinking I should consider converting all images with another module/library. Any suggestions as to which one I should use?
Etienne Perot
How about removing the plugins line and copying the qt-plugins directory manually to the output dir (so you have <exedir>/plugins/imageloaders/qjpeg4.dll). Also, does it work if you use pyqt's qt.conf?
Marcus Lindblom
Oh. DevIL is commonly used by many to load images. Haven't tried it myself cause I always use larger libs.
Marcus Lindblom
A: 

After trying all the above solutions in vain, I just ended up using PIL to load my images. Since I wanted to convert these images to a texture in an OpenGL Qt widget, the result was the same whether I load the image using Qt or PIL. Still, I'm baffled that such a basic thing as loading JPEGs is so complicated in a GUI library as well-known and widely used as Qt.

Etienne Perot
A: 

Hi,

I had the exact same problem. Fixed it using this : http://mail.python.org/pipermail/python-list/2008-June/669374.html

  1. Copy Qt plugins to the directory: $YOUR_DIST_PATH/PyQt4/plugins;
  2. Copy qt.conf to your dist directory;
  3. Edit qt.conf, change Prefix to ./PyQt4
I did try that, in vain :( I guess I'm the one doing something wrong here, but whatever, my program works... for now.
Etienne Perot
+1  A: 

Etienne -- Thank you for the tip. After much reading and trial-and-error, I arrived at the same conclusion: use PIL to show jpegs in a py2app-generated app.

http://www.thetoryparty.com/wp/2009/08/27/pyqt-and-py2app-seriously-i-dont-know-what-to-do-with-you-when-youre-like-this/

What I guess is that the proposed solutions for py2exe/Windows don't necessarily apply to py2app/OSX.

+1  A: 

I'm on OSX Leopard. Let's suppose you have an application MyApp.app.

  • Put the libraries libqjpeg.dylib and libqgif.dylib in
    MyApp.app/Contents/plugins/imageformats/
  • Put this in qt.conf in MyApp.app/Contents/resources/:

    [Paths]
    Prefix = .
    Binaries = .
    

On my machine (Leopard) this works.

This worked real well.Thanks!
EightyEight
A: 

on windows, suggested solutions work perfectly.

however, on osx can't make it work even with instructions here above.

question is: the libqjpeg.dylib and libqgif.dylib files are located in the /Developer/Applications/Qt/plugins/imageformats/ directory, and that if you have installed Qt itself, not just PyQt. these files do not work for me.

in PyQt distribution, i see the files libqjpeg.bundle and libqgif.bundle in /opt/local/libexec/qt4-mac/plugins/imageformats/, however these are not libraries, and btw i cannot open their contents either, even if they have the .bundle extension. using these files instead does not work either.

i am curious to know what have you done to make it work on osx. i have installed PyQt following this guide.

A: 

Hi,
I have installed Qt and PyQt following this guide:
http://www.oak-tree.us/blog/index.php/2009/05/12/pyqt-mac

+1  A: 

After hours of stumbling around with the same issue, I’d like to share the solution that worked for me on windows vista: using python2.6

copy the following directory into your dist directory generated by py2exe: C:\Python26\Lib\site-packages\PyQt4\plugins\imageformats

I just dropped the imageformats directory directly into my dist directory, without any further modifications to qt.conf or anything like that. I haven’t tried it, but this may work for phonon as well.

jbz
A: 

Hi,

For me, the problem was solved just copying the "qt.conf" for the directory of the executable.

You can find the "qt.conf" in ...\PythonXX\Lib\site-packages\PyQt4\qt.conf.

Thanks for help.

Vinicius Berni
Hi, just one correction... The problem was solved when I copied the file "qt.conf" and the folder "imageformats". You can find the folder in "...\PythonXX\Lib\site-packages\PyQt4\plugins ":-)Thanks.
Vinicius Berni