标签: .net bitmap system.drawing
我需要将PixelFormat = Format32bppArgb的16384 x16384图像转换为 PixelFormat.Format24bppRgb。
当我尝试这样做时,IDE(设置为AnyCPU)会出错,并显示“参数异常:参数无效”错误:
Dim bm As New Bitmap(uBitmap.Width, uBitmap.Height, PixelFormat.Format24bppRgb)
uBitmap看起来像这样:
如何解决此错误?