There are a couple of ways to do this, a simple one is to simply call the Save method on the ImageList Item:
imageList1.Images[i].Save("c:\\test.jpg", ImageFormat.Bmp);
You could however save it to a Stream, and then manipulate the image as you see fit.
MemoryStream ms = new MemoryStream();
imageList1.Images[i].Save(ms, ImageFormat.Bmp);
byte[] imageBits = ms.ToArray();
//Manipulate data
| Technorati Tags |
| bmp [feed], images [feed], bitmaps [feed], byte [feed], jpg [feed], image [feed], c# [feed], .Net [feed], MemoryStream [feed] |
| Related Wikipedia Documents |
| Windows bitmap, Raster graphics, BMP, Byte, Image, Image processing, C Sharp, .NET Framework |
| Related Amazon Books |
| Compressed Image File Formats: JPEG, PNG, GIF, XBM, BMP (ACM Press S.): View From Amazon UK/View From Amazon USA The Programmer's Guide to Compressed Image Files: Jpeg, Png, Gif, Xbm, Bmp: View From Amazon UK/View From Amazon USA Professional ASP.NET 2.0: View From Amazon UK/View From Amazon USA Beginning ASP.NET 2.0: View From Amazon UK/View From Amazon USA Pro C# 2005 & the .NET 2.0 Platform: View From Amazon UK/View From Amazon USA ASP.NET 2 for Dummies (For Dummies S.): View From Amazon UK/View From Amazon USA Beginning Visual C# 2005: View From Amazon UK/View From Amazon USA |
| Related Images From Flickr |
![]() ![]() ![]() |



