请注意以下C#代码的VB.net等价物:
internal static unsafe void DistortedDraw(byte* sourceBuffer, Bitmap displacementMap, Bitmap destBitmap) {
int sourceWidth = destBitmap.Width, sourceHeight = destBitmap.Height;
BitmapData previewData = destBitmap.LockBits(new Rectangle(0, 0, sourceWidth, sourceHeight), ImageLockMode.WriteOnly, destBitmap.PixelFormat);
int sourceDataStride = previewData.Stride;
int sourceBPP = destBitmap.PixelFormat.ToString().Contains("16") ? 2 : destBitmap.PixelFormat.ToString().Contains("24") ? 3 : destBitmap.PixelFormat.ToString().Contains("32") ? 4 : 0;
if (displacementMap == null) {
unsafe {
byte* previewScan0 = (byte*)previewData.Scan0;
byte* sourceScan0 = (byte*)sourceBuffer;
for (int y = 0, yofs = 0, invyofs = (sourceHeight - 1 - y) * sourceDataStride; y < sourceHeight; y++, yofs += sourceDataStride, invyofs -= sourceDataStride) {
for (int x = 0; x < sourceDataStride; x += 4) {
*(int*)(previewScan0 + yofs + x) = *(int*)(sourceScan0 + invyofs + x);
}
}
}
}
destBitmap.UnlockBits(previewData);
}
感谢。
答案 0 :(得分:3)
在Visual Basic中没有直接的等价物。根本问题是VB.NET不支持unsafe关键字或指针。
您可以做的最好的事情是检查该方法的作用,并找到用其他100%托管构造替换指针变量的方法。