Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
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?
QPainter を使用して画像に描画します。
QPainter painter( &targetImage ); painter.drawImage( ... );
Qt Assistant から: 「代わりに copy() または QPainter::drawImage() を使用してください。」