gpt4 book ai didi

c# - 我在 C# 中反转图像

转载 作者:行者123 更新时间:2023-11-30 19:34:57 25 4
gpt4 key购买 nike

这是我将 byte[] 数组转换为图像的代码

unsafe
{
//convert the UInt32[] into byte array and then assign the pointer to it
fixed (byte* ptr = Misc.ConvertFromUInt32Array(image))
{
Bitmap bmp = new Bitmap(200,64,800,
PixelFormat.Format32bppRgb,
new IntPtr(ptr));
bmp.Save("test.bmp");
}
}

我明白了:

alt text http:////img11.imageshack.us/img11/4853/testacr.png

代码哪里有问题,为什么会这样?如何恢复正常?

最佳答案

   bmp.RotateFlip(RotateFlipType.Rotate180FlipX);

解决了问题:)

关于c# - 我在 C# 中反转图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/743037/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com