I’m looking for a method, no matter how roundabout, to horizontally stitch together three pixmaps into one (ie 20×20 + 20×20 + 20×20 -> 60×20). If it helps any, what I actually have is three png resources and I need to join them together and return a QIcon. Anyone any suggestions on routes to take?
I’m looking for a method, no matter how roundabout, to horizontally stitch together three
Share
The simplest method: You create a new QPixmap with the desired size and paint the 3 pixmaps into this pixmap (QPixmap is a QPaintDevice)