Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
how to cast the returned pointer of @ uchar * QImage::scanLine(int i) @
to QRgb ? the image format is Format_RGB32
since we cannot do this like in C++ @ uchar a = scanLine(i); (QRgb)a @
in Python and there is no QRgb in PyQt,so what should I do ?
platform: Pyton3 + PyQt4