tags:

views:

44

answers:

2

Does Qt support textual annotations of images as part of its object library?

A: 

if you want to write text on the image, QImage is a child class of QPaintDevice initialising a QPainter with your image lets you draw on top of the image with any of the functions QPainter offers including drawText()

Harald Scheirich
A: 
Ross