I am new to Silverlight 5. I am developing a Silverlight application to capture an image through a webcam and assign that image to an image control.
Now after assigning
To edit images, it is probably easiest to use the WriteableBitmap
class. You can create a WriteableBitmap
instance from any BitmapSource
.
To then edit the image, you can use the WriteableBitmap Extensions library, which among other things contain convenience methods for drawing rectangles in the image.
Finally, if you need instructions on how to save the image, take a look for example here.