What is the difference between QImage and QPixmap?
Easilly answered by reading the docs on QImage and QPixmap: The QPixmap class is an off-screen image representation that can be used as a paint device. The QImage class provides a hardware-independent image representation that allows direct access to the pixel data, and can be used as a paint device. Edit: Also, from @Dave’s answer: … Read more