gpt4 book ai didi

c# - 将 Bitmap 对象保存为 jpeg 时出现 "A generic error occurred in GDI+",c#

转载 作者:太空宇宙 更新时间:2023-11-03 19:36:52 28 4
gpt4 key购买 nike

我有一组 ushort 像素数据(16 位灰度值),我试图将其保存为 jpeg 图像。但是,我的代码在保存命令时崩溃,并显示“GDI+ 中发生一般错误”。我不知道如何解决这个问题。我要保存到的目录是由我的应用程序创建的,我将其他文件写入其中;所以我知道这不是权限问题。这可能是数据损坏问题吗?我在将 ushort 数据放入 Bitmap 对象的步骤中做错了什么吗?因为我有 ushort 数据,所以我发现要弄清楚如何将它放入 Bitmap 对象需要付出一些努力,而且我可能做错了。

这是我的代码:

Bitmap img = new Bitmap(width, height, PixelFormat.Format16bppGrayScale);
Rectangle rect = new Rectangle(0,0, width, height);
BitmapData picData = img.LockBits(rect, ImageLockMode.ReadWrite, img.PixelFormat);
IntPtr pixelStartAddress = picData.Scan0;

WriteableBitmap pic = new WriteableBitmap(width, height, 96.0, 96.0, System.Windows.Media.PixelFormats.Gray16, null);

int stride = (thumb.XSize * pic.Format.BitsPerPixel + 7) / 8;
pic.WritePixels(new System.Windows.Int32Rect(0, 0, width, height), dataArray, stride, 0);

pic.CopyPixels(new System.Windows.Int32Rect(0,0,thumb.XSize, thumb.YSize),pixelStartAddress, dataArray.Length * sizeof(ushort), stride);

img.UnlockBits(picData);
img.Save(path, ImageFormat.Jpeg);

这整件事变得非常令人沮丧。请帮忙?!

最佳答案

恐怕与灰度/JPG 有关。我不知道 JPEG 是否支持灰度。

我会尝试将位图声明为普通颜色位图。和测试。

关于c# - 将 Bitmap 对象保存为 jpeg 时出现 "A generic error occurred in GDI+",c#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/997902/

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