我有这个 C# 片段效果很好,但我不能在 Windows Phone 中使用它,因为System.Drawing.Imaging
它不受支持。反正。
BitmapData bmpDat = bmp.LockBits(
new Rectangle(
0,0, bmp.Width, bmp.Height),
ImageLockMode.ReadOnly, bmp.PixelFormat);
int result = Avi.AVIStreamWrite(writeCompressed ? compressedStream : StreamPointer,
countFrames, 1,
bmpDat.Scan0,
(Int32)(bmpDat.Stride * bmpDat.Height),
0, 0, 0);
没有BitmapData
因为那个,但我只是想bmpData.Scan0
工作,我该如何解决这个问题并产生bmpData.Scan0
数据?
关于Scan0
这里