5

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?

4

2 に答える 2

6

QPainter を使用して画像に描画します。

QPainter painter( &targetImage );

painter.drawImage( ... );
于 2010-08-02T02:53:05.033 に答える
4

Qt Assistant から: 「代わりに copy() または QPainter::drawImage() を使用してください。」

于 2010-08-03T15:58:09.167 に答える