Answer the question
In order to leave comments, you need to log in
How to draw a smooth line with blur in Qt on iOS?
Draw a QGraphicsLineItem with QGraphicsBlurEffect:
QGraphicsLineItem* lineItem = _scene->addLine(30, 30, 100, 100, *pen);
QGraphicsBlurEffect* blur = new QGraphicsBlurEffect();
lineItem->setGraphicsEffect(blur);
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question