Qt provides an easy way to add image effects to any graphics drawn using the QPainter class. In this example, we will learn how to apply different images effects such as drop shadow, blur, colorize, and opacity effects, to a graphic before displaying it onscreen.
Applying image effects to graphics
How to do it...
Let's learn how to apply image effects to text and graphics by following these steps:
- Create a new Qt Widgets Application project and remove the menuBar, mainToolBar, and StatusBar.
- Create a new resource file by going to File | New File or Project and adding all the images required by the project:
- Next, open up mainwindow.ui and add four labels to the window. Two of the labels will be text, and the two...