在形状周围绘制阴影颜色?

发布于 2024-11-05 08:07:41 字数 90 浏览 0 评论 0原文

可以用钢笔画透明的吗?

我现在通过绘画制作一个形状,问题是我想用透明颜色勾勒出该形状。目的也可以通过阴影其边界来解决。可以如何实施。 请告诉我。 谢谢

Is it possoble to draw a pencolor transparent.

I make a shape through paint now the problem is that i want to outline that shape with a transparent color .The purpose will also solve by shadowing its boundry. How it can implement .
Please tell me.
Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

辞慾 2024-11-12 08:07:41

QPen 可以从 QColor 创建,QColor 可以具有 alpha 值。 alpha 值将为您带来透明度效果。

绘制项目时,钢笔是轮廓颜色,画笔是填充颜色。因此,在您的情况下,您需要在开始绘图之前设置笔。 (注意:您可能需要给它一个宽度)。

painter->setPen(QPen( QColor(qRgba(0, 10, 20, 50))));
// Draw your item

A QPen can be created from a QColor, which can have alpha values. An alpha value is what's going to give you the transparency effect.

When drawing an item, the pen is the outline color and the brush is the fill color. So in your case you want to set the pen before you start drawing. (Note: you may have to give it a width).

painter->setPen(QPen( QColor(qRgba(0, 10, 20, 50))));
// Draw your item
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文