-
Bug
-
Resolution: Unresolved
-
Not Evaluated
-
None
-
5.15.2, 6.8.3, 6.10.0
-
None
In recent versions of Qt, I found that the font opacity rendering in Text component is incorrect. The transparency blending results in Qt 5.13 are more in line with expectations, both in appearance and numerically.

Here's the code I use to demonstrate this issue:
import QtQuick 2.12 import QtQuick.Window 2.12 Window { width: 256 height: 256 visible: true color: "black" title: qsTr("Font Opacity Test") Row { anchors.centerIn: parent spacing: 16 Text { id: bigText font.family: "Arial" font.pixelSize: 64 text: "BIG" color: "#CCFFFFFF" // disable subpixel antialiasing style: Text.Outline styleColor: "transparent" } Text { id: smallText anchors.baseline: bigText.baseline font.family: "Arial" font.pixelSize: 16 text: "Small" color: "#CCFFFFFF" // disable subpixel antialiasing style: Text.Outline styleColor: "transparent" } } }
- resulted from
-
QTBUG-69301 Adding outline effect on Arabic text, word looks not correct and it looks outline coming between letters
-
- Closed
-