What is the difference between the 2 ? some examples would be great! thnx
views:
104answers:
1
A:
There is no System.Drawing.Bitmap
in Silverlight.
If you are asking for a comparison between this in the .NET framework and WritableBitmap
in Silverlight then the differences are huge. The WritableBitmap
is a simple representation of a bitmap with very few constructors or means of manipulation. Most of what you can do with Bitmap
you would need to implement yourself via the Pixels
array.
AnthonyWJones
2010-07-22 12:50:46