Here is the problem. I want to open a file from local drives, then make it into a WritableBitmap so i can edit it. But the problem is, i cannot create a WritableBitmap from Uri or something like that. Also i know how to open a file into BitmapImage but i cannot figure out how to open a file as WritableBitmap. Is there way to open a file directly into a WritableBitmap,if there is not, is there a way to convert a BitmapImage to a WritableBitmap? Thanks guys.

link|improve this question

it seems that we can pass a bitmap directly into writablebitmaps constructor. My VS gave me errors while i first tried it but it seems working now. It wasn't a good question at all, sorry guys. – gkaykck Nov 23 '10 at 9:35
feedback

2 Answers

up vote 2 down vote accepted

You can load your image file into a BitmapImage and use that as a source for your WriteableBitmap:

BitmapImage bitmap = new BitmapImage(new Uri("YourImage.jpg", UriKind.Relative));
WriteableBitmap writeableBitmap = new WriteableBitmap(bitmap);
link|improve this answer
feedback

I'm no expert and don't have immediate access to intellisense and whatnot, but here goes...

var fileBytes = File.ReadAllBytes(fileName);
var stream = new MemoryStream(fileBytes);
var bitmap = new BitmapImage(stream);
var writeableBitmap = new WritableBitmap(bitmap);

Even if not a perfect example this should be enough to point you in the right direction. Hope so.

link|improve this answer
you cannot pass a bitmap directly into a writablebitmap – gkaykck Nov 23 '10 at 9:32
i find out that you can actually, so the question was silly – gkaykck Nov 23 '10 at 9:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.