tags:

views:

41

answers:

1

I am looking for a way to simply paste some Qimage into bigger one, starting with some given (x,y). Now, I am copying pixel by pixel all Qimage.

+1  A: 

Yes, use a QPainter to paint into a QPaintDevice, QImage is a QPaintDevice, so it works.

Matias Valdenegro