B Bruce Hamilton [MSFT] May 16, 2005 #2 The best way to save a bitmap in the .NET Compact Framework, v1, is by using a PictureBox control. ' Assumes myBmp is a Bitmap object. MyPictureBox.Image = myBmp MyPictureBox.Image.Save("myBmp.bmp", ImageFormat.Bmp) The .NET Compact Framework version 2.0 supports the Save method on an Image. To get the Visual Studio Beta 2, which contains NETCF v2, visit: http://lab.msdn.microsoft.com/vs2005/ - Bruce Hamilton ..NET Compact Framework User Education Microsoft (e-mail address removed)
The best way to save a bitmap in the .NET Compact Framework, v1, is by using a PictureBox control. ' Assumes myBmp is a Bitmap object. MyPictureBox.Image = myBmp MyPictureBox.Image.Save("myBmp.bmp", ImageFormat.Bmp) The .NET Compact Framework version 2.0 supports the Save method on an Image. To get the Visual Studio Beta 2, which contains NETCF v2, visit: http://lab.msdn.microsoft.com/vs2005/ - Bruce Hamilton ..NET Compact Framework User Education Microsoft (e-mail address removed)
S Sergey Bogdanov May 16, 2005 #3 Um... there is no Image.Save method (PictureBox.Image has Image type) for CF.NET v1.0: http://msdn2.microsoft.com/library/9t4syfhh(en-us,vs.80).aspx Best regards, Sergey Bogdanov http://www.sergeybogdanov.com
Um... there is no Image.Save method (PictureBox.Image has Image type) for CF.NET v1.0: http://msdn2.microsoft.com/library/9t4syfhh(en-us,vs.80).aspx Best regards, Sergey Bogdanov http://www.sergeybogdanov.com
A Alex Feinman [MVP] May 17, 2005 #4 I think it was a typo as further in his post Bruce definitely refers to v2