WPF WriteableBitmap 개체를 System.Drawing.Image로 변환하려면 어떻게해야합니까?WPF/WinForms/GDI interop : WriteableBitmap을 System.Drawing.Image로 변환 하시겠습니까?
내 WPF 클라이언트 응용 프로그램은 비트 맵 데이터를 웹 서비스로 보내고 웹 서비스는 그 끝에 System.Drawing.Image를 구성해야합니다.
// WPF side:
WriteableBitmap bitmap = ...;
int width = bitmap.PixelWidth;
int height = bitmap.PixelHeight;
int[] pixels = bitmap.Pixels;
myWebService.CreateBitmap(width, height, pixels);
그러나 웹 서비스의 끝
, 나는 System.Drawing을 만드는 방법을 모르는 :는 내가하는 WriteableBitmap의 데이터를 얻을 웹 서비스를 통해 정보를 보낼 수 있습니다 알고 이 데이터로부터 이미지.
// Web service side:
public void CreateBitmap(int[] wpfBitmapPixels, int width, int height)
{
System.Drawing.Bitmap bitmap = ? // How can I create this?
}
감사합니다. 나는 놀고 이것의 무엇이든이 도움이되는지 볼 것이다. –
좋습니다. 도와 주셔서 감사합니다. –