System.Drawing.Drawing2D.GraphicsPath in ASP.Net

  • Thread starter Thread starter Eduardo Rosa
  • Start date Start date
E

Eduardo Rosa

Hi,
Can I use GraphicsPath class in ASP.Net page? There's other way to do this?

thanks a lot
 
You can create graphic images from any .NET code.
The question then becomes "what do you do with the image?"
In ASP.NET the most obvious thing would be to point an image control to it.
MyImageControl.ImageURL="myImage.gif"
or
MyIMageContro.ImageURL="myImageGeneratorPage.aspx"
 
Back
Top