Zoom in QGraphicsView
Solved
General and Desktop
-
Hi Qt Community ,
How do I zoom in/out in a QGraphicsView ?
(Ofcourse , my QGraphicsScene is wide enough .)Sorry for the short post .
-
raven-worx Moderatorsreplied to Walux on 3 Jul 2016, 08:38 last edited by raven-worx 7 Mar 2016, 09:02
@Walux
using QTransform and do scaling on it. Then set the trasnformation on the view (QGraphicsView::setTransform()). -
You can also directly use
QGraphicsView::scale()
. -
They're all good answers :)
Thank you very much :)
3/4