tags:

views:

71

answers:

2
+2  Q: 

BitBlt in Qt4 ?

What is the recommended method of copying one QImage into another at a particular position in Qt4?

QImage::bitblt was removed in Qt4.

Does the QImage now need to be converted to a PixMap and back?

+5  A: 

Use QPainter to draw to your image.

QPainter painter( &targetImage );

painter.drawImage( ... );
Tom Sirgedas
+1  A: 

From Qt Assistant: "Use copy() or QPainter::drawImage() instead."

Ekimov Alexander