.NET GDI+反转文本
使用 .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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
Brushes.Black
来FillRectangle
,然后使用Brushes.White
来DrawString
。根据您的场景,您可以通过调用 MeasureString 来获取矩形的大小。
You can
FillRectangle
withBrushes.Black
, thenDrawString
withBrushes.White
.Depending on your scenario, you can get the size of the rectangle by calling
MeasureString
.我希望您询问有关镜像文本的问题。只需在表单 onPaint 方法中使用此代码
I hope you are asking about mirroring the text. Just use this code in form onPaint method