Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个用于 winform 应用程序的用户控件。基本功能是绘制和修改 GDI 对象并将其保存到数据库中。现在我的组织正计划为同样的目的开发 Web 应用程序。现在我正在寻找一种在 asp 面板上绘制 gdi 对象的方法。如果有人有任何想法,请分享一个例子。
您可以在 ASP.NET 中使用 GDI 在 Bitmap 对象中进行绘制。显然,您不能在客户端屏幕上绘图。如果要显示图像,则应将其保存并以 img 标记的形式提供给客户端。但是不推荐在 ASP.NET 环境中使用 GDI。如果我没记错的话,原因是多线程问题。
System.Drawing 命名空间提供对 GDI+ 功能的访问。