0
votes
1answer
259 views

Getting the source path of a BitmapImage object

I have a Windows 8 project using MVVM, XAML and C#. One of my methods is currently updating an ObservableCollection of all the images in the Pictures folder, converted to BitmapImage format, and this ...
0
votes
1answer
979 views

conversion between bitmapimage and byte array in windows8

I write the code below to convert image to byte array and convert back later, but it doesn't work. Anyone can help? FileOpenPicker picker = new FileOpenPicker(); picker.ViewMode = ...
2
votes
2answers
341 views

Load bitmapImage from base64String

How can I load a bitmapImage from base64String in windows 8? I tried this but I am not successful. It used to work on windows phone. What is different? Looks like I have to use the function ...
2
votes
1answer
1k views

Saving a BitmapImage object as a file in local storage in windows 8?

I have a BitmapImage object, which already has its source etc set. I simply want to save it to my apps local storage folder, so that I can reference it at other points in the program. I just cannot ...
4
votes
2answers
300 views

How to render a control to an image? [closed]

I want to render a grid as an image to use on a live tile in my Windows 8 Metro Style App.
0
votes
1answer
312 views

Viewing a BitmapImage for Sample Data in Design Mode in Blend 2012

Is there a way to create a BitmapImage as Sample Data to be used in Blend 2012 Metro Store App (on Windows 8)? I have a ViewModel as follows: public ItemDesignDataVM() { WebThumbnail = new ...
1
vote
1answer
3k views

WinRT Loading an Image into a Byte array

I'm trying to learn how to interact with the some of the WinRT (Metro) objects for images. Basically, I'm working towards creating a "GetPixel" and "SetPixel" method that's easy to use (similiar to ...
1
vote
1answer
2k views

How to load a BitmapImage in MetroUI Dynamically

I've been experimenting with Windows 8 and Metro UI, I've written a perfectly reasonable load of a bitmap image, but it doesn't seem to be loading, any help is appreciated. Public Sub New(Image As ...