답변

1

아 - 먼저

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

(documentation here) 와 함께 EditingSession을 만든 다음 데 도움이

희망 (A 사각형 걸리는 과부하를 가지고있는) RenderToBitmapAsync()와 비트 맵에 그 렌더링 할 수 있습니다 !

된 답 :

나는 PhotoResult이 무엇인지 확실하지 않다

하지만 here's the documentation for the constructor you mentioned. 당신은 그것에 대해 어떤 질문을합니까?

+0

PhotoResult는 윈도우 폰에서 PhotoChooser 작업을 사용할 때 객체의 클래스가 반환됩니다. 이 시나리오에서 제공되는 문서는 부적절합니다. – rahulroy9202

2

Nokia Imaging SDK의 새 버전 1.0에서 StreamImageSource를 사용하여 ChosenPhoto 스트림을 읽을 수 있습니다.

0

NokiaImagingSDK 1.2

Bitmap bmp = null; 
await streamImageSource.GetBitmapAsync(bmp, OutputOption.PreserveAspectRatio); 
관련 문제