GDI+, Creating image

  • Thread starter Thread starter Anton
  • Start date Start date
hi

asp.net 3.5

Is it possible to create an image without using the Image.FromFile???

Yes.

You can create an Image in memory with the tools in System.Drawing
namespace and save the graphics object as a bitmap using
Response.OutputStream as the destination.

HTH
 
Back
Top