gpt4 book ai didi

qt - Qt中如何对QLabel文本应用发光效果?

转载 作者:行者123 更新时间:2023-12-04 13:34:33 36 4
gpt4 key购买 nike

我需要将发光效果应用于QLabel。黑色文本和白色发光效果(描边效果)。我在谷歌试过但没有运气。

如果有人知道如何将发光效果应用到 QLabel 那么请告诉我如何做到这一点。

最佳答案

是的,你可以在 QLabel 上设置它:

http://qt-project.org/doc/qt-5/qwidget.html#setGraphicsEffect

您可以在小部件上设置 QGraphicsEffect, 只要您不介意它不能在 Mac 上运行

label = new QLabel("hello text"));
QGraphicsDropShadowEffect * dse = new QGraphicsDropShadowEffect();
dse->setBlurRadius(10);
label->setGraphicsEffect(dse);

希望对您有所帮助。

关于qt - Qt中如何对QLabel文本应用发光效果?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15522105/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com