<p>Hi! I'm very new to PyQt (just started using it today) and also quite new to Qt in general... I have a problem creating a QImage. No matter what I do, it creates a null one... here's the output I get after I try to create a 10x10 QImage:</p>
<p> </p>
<p>&gt;&gt;&gt; image = qt.QImage(qt.QSize(10,10), 4)<br />&gt;&gt;&gt; image.width()<br />0<br />&gt;&gt;&gt; image.height()<br />0<br />&gt;&gt;&gt; image.depth()<br />0<br /></p>
<p>The third parameter means the RGB32 format... for some reason, when I type qt.QImage.Format_RGB32 there instead, I get the error "AttributeError: Format_RGB32". Can someone help me create a QImage? By the way, if I replace "qt.QSize(10,10)" with simply "10, 10" the result is exactly the same...</p>