我需要知道如何將bitmap-image轉換爲windows store應用程序的字節數組。 這裏是我試過,但它不會將位圖保存的BitmapImage將bitmapImage轉換爲用於windows store的字節數組
Dim file As StorageFile = Await Windows.Storage.StorageFile.GetFileFromApplicationUriAsync()
Dim stream As IRandomAccessStream = Await file.OpenAsync(Windows.Storage.FileAccessMode.Read)
Dim decoder As BitmapDecoder = Await BitmapDecoder.CreateAsync(stream)
Dim pixelData As PixelDataProvider = Await decoder.GetPixelDataAsync()
Return pixelData.DetachPixelData()
你能告訴我們你嘗試過什麼到目前爲止? –
到目前爲止您嘗試過哪些代碼?如果你顯示你已經嘗試了什麼,並說出哪個位不起作用,那麼你會發現你會得到更好的迴應。 –
以及我試過,但它不是存儲像的BitmapImage '點心文件作爲StorageFile =等待Windows.Storage.StorageFile.GetFileFromApplicationUriAsync() 昏暗流作爲IRandomAccessStream =等待file.OpenAsync(Windows.Storage.FileAccessMode.Read) 昏暗解碼器作爲BitmapDecoder =等待BitmapDecoder.CreateAsync(流) 昏暗PixelData取出作爲PixelDataProvider =等待decoder.GetPixelDataAsync() 返回pixelData.DetachPixelData()」 –