This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author davidar
Recipients amaury.forgeotdarc, davidar, effbot, ggenellina, pitrou
Date 2009-08-05.02:34:31
SpamBayes Score 9.685943e-07
Marked as misclassified No
Message-id <1249439678.0.0.17712740944.issue6562@psf.upfronthosting.co.za>
In-reply-to
Content
Ok, so if it's a bug in (Py)Qt then I'm not going to worry about it.

I've managed to fix the issue in my case anyway, by (essentially) replacing:
    image = Image.open(fname)
    image.load()
    tile = ImageQt(image)
with (the much more obvious way to do it):
    tile = QImage(fname)
History
Date User Action Args
2009-08-05 02:34:38davidarsetrecipients: + davidar, effbot, amaury.forgeotdarc, ggenellina, pitrou
2009-08-05 02:34:38davidarsetmessageid: <1249439678.0.0.17712740944.issue6562@psf.upfronthosting.co.za>
2009-08-05 02:34:32davidarlinkissue6562 messages
2009-08-05 02:34:31davidarcreate