sipsorcery-org / SIPSorceryMedia.FFmpeg

GNU Lesser General Public License v2.1
31 stars 24 forks source link

Is it possible to convert SIPSorceryMedia.Abstractions.RawImage to System.Drawing.Image #39

Closed mail2mhossain closed 1 year ago

mail2mhossain commented 1 year ago

I need to convert SIPSorceryMedia.Abstractions.RawImage to System.Drawing.Image to display image in a cross platform app developed in Avalonia.

ChristopheI commented 1 year ago

I'm sure other people in the community will be glad to know how you deal with that...

mail2mhossain commented 1 year ago

private void _videoSource_OnVideoSourceRawSampleFaster(uint durationMilliseconds, RawImage rawImage) { Bitmap bmpImage = new Bitmap(rawImage.Width, rawImage.Height, rawImage.Stride, PixelFormat.Format24bppRgb, rawImage.Sample); }