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
 
Eduardo said:
Hi,
Can I use GraphicsPath class in ASP.Net page? There's other way to do this?

thanks a lot

What's your goal?

//Rutger
 
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"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top