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?
Use QPainter to draw to your image.
QPainter painter( &targetImage );
painter.drawImage( ... );
From Qt Assistant: "Use copy() or QPainter::drawImage() instead."
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With