gpt4 book ai didi

c++ - 如何使用 QPaint 创建这样的圆圈

转载 作者:行者123 更新时间:2023-11-28 02:57:34 25 4
gpt4 key购买 nike

我正在尝试创建这样的东西

enter image description here

这是我的做法

QPixmap target(60,80);            
QBrush BackGroundBrush;
BackGroundBrush.setColor(QColor(Qt::GlobalColor::black));
QPainter painter(&target);
painter.setBackground(BackGroundBrush);
painter.drawEllipse(10,10,10,10);

现在我想知道如何用颜色完全填充它?我当时想在这个圆圈里面再画一个圆圈(白色)?

最佳答案

您必须使用 painter.setPen 来选择您要绘制边界的颜色和样式,并使用 painter.setBrush 来设置您将要绘制的颜色和样式填充它。基本上要用纯色无边界地填充一些东西,你必须简单地使用:

painter.setPen (Qt::NoPen);
painter.setBrush (colorOfYourLiking);

关于setBackground在Qt文档中有如下几行:

Sets the background brush of the painter to the given brush.

The background brush is the brush that is filled in when drawing opaque text, stippled lines and bitmaps.

我猜这不是你需要的。

关于c++ - 如何使用 QPaint 创建这样的圆圈,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21639106/

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