0
我需要將QDeclarativeItem對象轉換爲諾基亞Qt中的QImage對象,是否有任何方法可以做到這一點?如何將QDeclarativeItem轉換爲QImage
我需要將QDeclarativeItem對象轉換爲諾基亞Qt中的QImage對象,是否有任何方法可以做到這一點?如何將QDeclarativeItem轉換爲QImage
你可以得到你的項目的邊框與
QRectF QGraphicsItem::boundingRect()
您還需要一個指向你的QDeclarativeView,你可以用它來渲染這個矩形成的QImage與
void QGraphicsView::render (QPainter * painter,
const QRectF & target = QRectF(), const QRect & source = QRect(),
Qt::AspectRatioMode aspectRatioMode = Qt::KeepAspectRatio)
(未測試)