import QtQuick 2.8 import QtQuick.Window 2.2 Window { visible: true width: 640 height: 480 color: "black" Row { spacing: 10 Column { spacing: 10 Text { color: "white" antialiasing: true text: "antialiasing: true" } Rectangle { width: 200 height: 100 radius: 25 color: "white" antialiasing: true } Rectangle { width: 200 height: 200 radius: 100 color: "white" antialiasing: true } Rectangle { width: 200 height: 10 rotation: 20 color: "white" antialiasing: true } } Column { spacing: 10 Text { color: "white" antialiasing: false text: "antialiasing: false" } Rectangle { width: 200 height: 100 radius: 25 color: "white" antialiasing: false } Rectangle { width: 200 height: 200 radius: 100 color: "white" antialiasing: false } Rectangle { width: 200 height: 10 rotation: 20 color: "white" antialiasing: false } } } }