调整ByteArray或GrayScale图像的大小

时间:2014-07-29 11:05:54

标签: c# image

我想使用双三次/双二次插值将ByteArray[5x7]调整为[241x301]像素。因此,我尝试使用pixelformat ByteArrayBitmap转换为Format16bppGrayScale。然后,我尝试将已调整大小的Bitmap转换回另一个ByteArray

不幸的是,似乎GDI不支持格式Format16bppGrayScale的转换。我总是得到例外,例如invalid argumentout of memory。我在Google上查询了这一点,但我只找到this similar question,建议使用第三方库或编写我自己的代码以使用字节数组调整大小。

有人可以建议一种方法来获得一个调整大小的字节数组吗?

更新

以下代码示例为我提供了System.ArgumentException

static void Main(string[] args)
{
    byte[] resizedBitmap = resizeImage(new byte[,] { { 1, 2 }, { 3, 4 }, { 5, 6 }, { 7, 8 } }, 241, 301);
}

public static Byte[] resizeImage(byte[,] matrix, int width, int height)
{
    // Create Bitmap from ByteArray
    Bitmap original;
    unsafe
    {
        fixed (byte* intPtr = &matrix[0, 0])
        {
            original = new Bitmap(5, 7, 4, PixelFormat.Format16bppGrayScale, new IntPtr(intPtr));
        }
    }

    // Resize the Bitmap and convert it back to a ByteArray
    Image newImage = new Bitmap(241, 301);
    using (Graphics g = Graphics.FromImage(newImage))
    {
        g.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.Bicubic;

        // Convert the Bitmap back to a ByteArray
        Bitmap bmp = new Bitmap(241, 301, g);
        BitmapData bmpData = bmp.LockBits(new Rectangle(new Point(), bmp.Size), ImageLockMode.ReadOnly, PixelFormat.Format16bppGrayScale);
        byte[] dataAsBytes = new byte[bmpData.Stride * bmpData.Height];
        System.Runtime.InteropServices.Marshal.Copy(bmpData.Scan0, dataAsBytes, 0, dataAsBytes.Length);
        bmp.UnlockBits(bmpData);
        return dataAsBytes;
    }       
}

1 个答案:

答案 0 :(得分:0)

您始终可以使用GDI +插值来执行调整大小:

        Image original = new Bitmap(/* path to your 5x7 image */);
        Image newImage = new Bitmap(241, 301);

        using (Graphics g = Graphics.FromImage(newImage))
        {
            g.InterpolationMode = InterpolationMode.Bicubic;
            g.DrawImage(original, new Rectangle(0, 0, newImage.Width, newImage.Height));
        }