Create a Bitmap image in memory and show it in an ASP .Net Page
-
I am tryng to create a Bitmap completely in memory (Bitmap BMP = new BitMap(300,300)) and later with GDI create a complete image based on mathematical calculations, and later show the result in the ASP .Net page, but I don`t know which control use for it because all the ASP .Net image control that I find include an URL string property for stablishing the source image, but I don´t find any control which accepts an in memory image as source like pictureBox does in Windows Forms, but I find pages doing it, could anybody tell me how is it possible in ASP .Net. Best Regards
-
I am tryng to create a Bitmap completely in memory (Bitmap BMP = new BitMap(300,300)) and later with GDI create a complete image based on mathematical calculations, and later show the result in the ASP .Net page, but I don`t know which control use for it because all the ASP .Net image control that I find include an URL string property for stablishing the source image, but I don´t find any control which accepts an in memory image as source like pictureBox does in Windows Forms, but I find pages doing it, could anybody tell me how is it possible in ASP .Net. Best Regards
There aren't any built-in controls that will render an image from memory. You'll have to create you own server control, but there are numerous examples here and elsewhere.
I know the language. I've read a book. - _Madmatt
-
There aren't any built-in controls that will render an image from memory. You'll have to create you own server control, but there are numerous examples here and elsewhere.
I know the language. I've read a book. - _Madmatt
-
You need to learn how to find information on your own.
I know the language. I've read a book. - _Madmatt