[PyQt] Application built with py2exe doesn't display jpg/gif images in QWebView

2009-01-13 Thread piotr maliński
I have a mini-browser in my app, and runned from source on Windows it works ok, but the binary made with Py2exe doesn't work ok - it doesn't display JPG/GIF images. PNG work. Adding this: data_files=[(.,[qjpeg4.dll, qgif4.dll, qico4.dll] and copying the DLLs from PyQt4 doesn't help. Can this be

Re: [PyQt] Application built with py2exe doesn't display jpg/gif images in QWebView

2009-01-13 Thread Sergio Jovani
I had this problem. I solved it copying C:\Python26\Lib\site-packages\PyQt4\plugins\imageformats\qjpeg4.dll to dist\imageformats\. I my build script I have: build.bat == C:\python26\python.exe setup.win32.py py2exe --includes sip ... mkdir dist\imageformats copy

Re: [PyQt] Application built with py2exe doesn't display jpg/gif images in QWebView

2009-01-13 Thread piotr maliński
Works, many Thanks :) W dniu 13 stycznia 2009 23:44 użytkownik Sergio Jovani lese...@gmail.comnapisał: I had this problem. I solved it copying C:\Python26\Lib\site-packages\PyQt4\plugins\imageformats\qjpeg4.dll to dist\imageformats\. I my build script I have: build.bat ==