How to draw a QPoint on a QGraphicsView/Scene
问题 It's really not clear to me how to simply draw a 2d point in QT. I want it to overlay a QPixmap item, but every piece of documentation I find talks about drawing polygons with brushes. Thanks in advance - 回答1: From Qt's documentation: QImage is designed and optimized for I/O, and for direct pixel access and manipulation, while QPixmap is designed and optimized for showing images on screen. So if you have a QPixmap, convert it to QImage and then use QImage::setPixel: QImage image = pixmap-