.NET GDI+反转文本

发布于 2024-10-19 06:41:52 字数 134 浏览 1 评论 0原文

使用 .NET 和 GDI+ 反转文本的最佳方法是什么?通过反转,我的意思是使用不同的背景/前景色进行绘制。 “最佳”一词是主观的,但我将其定义为速度、代码行数、最简单(即我只能进行一个函数调用吗?)。

C# 或 VB.NET 都可以。

What is the best method of inverting text using .NET and GDI+. By invert, I mean draw with different background/foreground colors. The term best is subjective, but I would define it to mean speed, lines of code, easiest (i.e. is there just one function call I can make?).

C# or VB.NET is fine.

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

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

发布评论

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

评论(2

﹉夏雨初晴づ 2024-10-26 06:41:52

您可以使用Brushes.BlackFillRectangle,然后使用Brushes.WhiteDrawString
根据您的场景,您可以通过调用 MeasureString 来获取矩形的大小。

You can FillRectangle with Brushes.Black, then DrawString with Brushes.White.
Depending on your scenario, you can get the size of the rectangle by calling MeasureString.

耀眼的星火 2024-10-26 06:41:52

我希望您询问有关镜像文本的问题。只需在表单 onPaint 方法中使用此代码

        Graphics g = e.Graphics;
        g.DrawString("String on form", Font, Brushes.Black, 0, 0);

        // here Im mirror graphics
        g.MultiplyTransform(new System.Drawing.Drawing2D.Matrix(1, 0, 0, -1, 0, 40));

        // Drawing mirror text
        g.DrawString("String on form", Font, Brushes.Black, 0, 0);

        // returning graphics to normal state
        g.ResetTransform();

I hope you are asking about mirroring the text. Just use this code in form onPaint method

        Graphics g = e.Graphics;
        g.DrawString("String on form", Font, Brushes.Black, 0, 0);

        // here Im mirror graphics
        g.MultiplyTransform(new System.Drawing.Drawing2D.Matrix(1, 0, 0, -1, 0, 40));

        // Drawing mirror text
        g.DrawString("String on form", Font, Brushes.Black, 0, 0);

        // returning graphics to normal state
        g.ResetTransform();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文