1

如何將PhotoResult轉換爲Nokia Imaging SDK中的位圖? 我希望將圖像分解成更小的圖像。 Nokia.Graphics.Imaging中的位圖類有一個構造函數,它接受另一個位圖和一個矩形。我希望使用它。 我在這找不到任何好的例子。請協助。如何把PhotoResult或BitmapImage轉換成Bitmap?

回答

1

啊 - 你可以先用

var session = await EditingSessionFactory.CreateEditingSessionAsync(photoResult.ChosenPhoto); 

documentation here) 創建EditingSession,然後渲染成位圖與RenderToBitmapAsync()(其中有采用一個矩形的過載)

希望幫助!

老答案:

我不知道一個PhotoResult是什麼,但here's the documentation for the constructor you mentioned。你有什麼問題呢?

+0

PhotoResult是使用Windows Phone的一個PhotoChooser任務時返回的類的對象。那裏提供的文檔不適合這種情況。 – rahulroy9202

2

在Nokia Imaging SDK的新版本1.0中,您可以使用StreamImageSource讀取ChosenPhoto流。

0

NokiaImagingSDK 1.2

Bitmap bmp = null; 
await streamImageSource.GetBitmapAsync(bmp, OutputOption.PreserveAspectRatio);