PhotoML을 (를) Nokia Imaging SDK에서 Bitmap으로 변환하는 방법? 이미지를 작은 이미지로 나누고 싶습니다. Nokia.Graphics.Imaging
의 Bitmap 클래스에는 다른 비트 맵과 사각형을 사용하는 생성자가 있습니다. 나는 그것을 사용하고 싶다. 좋은 예를 찾을 수 없습니다. 도와주세요.PhotoResult 또는 BitmapImage를 (를) Bitmap으로 변환하는 방법은 무엇입니까?
1
A
답변
1
아 - 먼저
var session = await EditingSessionFactory.CreateEditingSessionAsync(photoResult.ChosenPhoto);
(documentation here) 와 함께 EditingSession을 만든 다음 데 도움이
희망 (A 사각형 걸리는 과부하를 가지고있는) RenderToBitmapAsync()와 비트 맵에 그 렌더링 할 수 있습니다 !
된 답 :
나는 PhotoResult이 무엇인지 확실하지 않다하지만 here's the documentation for the constructor you mentioned. 당신은 그것에 대해 어떤 질문을합니까?
2
Nokia Imaging SDK의 새 버전 1.0에서 StreamImageSource를 사용하여 ChosenPhoto 스트림을 읽을 수 있습니다.
0
NokiaImagingSDK 1.2
Bitmap bmp = null;
await streamImageSource.GetBitmapAsync(bmp, OutputOption.PreserveAspectRatio);
PhotoResult는 윈도우 폰에서 PhotoChooser 작업을 사용할 때 객체의 클래스가 반환됩니다. 이 시나리오에서 제공되는 문서는 부적절합니다. – rahulroy9202