Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
I’ve been hitting my head to the ground for a couple of days trying send a byte array that represents my Image to my WCF Service in Windows 8, things has changed a lot when it comes to IO and Streams in Windows 8 so I included my code here for others to use
Covert File to Byte Array
- private async Task<byte[]> ConvertImagetoByte(StorageFileimage)
- {
- IRandomAccessStream fileStream = await image.OpenAsync(FileAccessMode.Read);
- var reader = new Windows.Storage.Streams.DataReader(fileStream.GetInputStreamAt(0));
- await reader.LoadAsync((uint)fileStream.Size);
- byte[] pixels = new byte[fileStream.Size];
- reader.ReadBytes(pixels);
- return pixels;
- }
Comments
- Anonymous
April 17, 2013
this is old but for the next guy who finds this off a search engine like i did: add: (IBuffer.ToArray() is defined in WindowsRuntimeBufferExtensions) using System.Runtime.InteropServices.WindowsRuntime; then just do: var buffer = await FileIO.ReadBufferAsync(image); var bytes = buffer.ToArray();