Unfortunately, it doesn't seem to be that easy.

When I run the line img = QImage(imageData, 10, 10, QImage.Format_Indexed8), I get a bunch of errors saying that the arguments provided don't match any overloaded constructor:
Qt Code:
  1. QImage(sip.voidptr, int, int, QImage.Format): argument 1 has unexpected type 'list'
  2. QImage(str, int, int, int, QImage.Format): argument 1 has unexpected type 'list'
  3. QImage(sip.voidptr, int, int, int, QImage.Format): argument 1 has unexpected type 'list'
  4. etc.
To copy to clipboard, switch view to plain text mode 

I think I need to do something with a "sip.voidptr", but it appears that's essentially just a C++ interface, and not something I can really work with in Python - is that correct?