如何将形状从 Directx 转换为 gdi+使用 c#
我使用 directx 在 c# 中绘制圆。我喜欢使用 GDI 在 c# 中绘制具有相同尺寸的圆。这意味着我喜欢将该圆从 directx 转换为 GDI。有任何身体对我有帮助吗?请为我提供答案。我该怎么做。有任何可用的算法吗...... 我还给出了圆心的输入是(x,y)这种点格式。但在gdi中它是像素格式。那么我如何将directx点转换为gdi+像素
i draw the circle in c# using directx.i like to draw the circle with same dimensions in c# using GDI.It means i like to convert that circle from directx to GDI. Is any body help for me.plz provide the answer for me.how can i do it.Is any algorithm available for that........
And also i give the input for center of the circle is (x,y)in this point format.but in gdi it is pixel format .so how can i convert the directx points to gdi+ pixels
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是来自 MSDN 的链接,介绍了Windows 窗体中的图形和绘图 。您可能需要类似的东西:
之后您可能想研究双缓冲技术,一些链接:
Here is a link from MSDN that introduces Graphics and Drawing in Windows Forms. And it's likely that you will need something similar to:
After that you might want to look into double-buffering techniques, a few links :