从PixelFormat获取像素长度

时间:2013-09-16 19:18:20

标签: c# .net image-processing f#

如何从PixelFormat枚举中获取像素长度(以字节为单位)? 我想使用原生方法处理图像像素,但如果我不知道像素的偏移量,我怎么能遍历图像。

代码:

let formRgbCube (image : Bitmap) =
    let width = image.Width
    let height = image.Height
    let bitmapData = image.LockBits(Rectangle(0, 0, image.Width, image.Height), ImageLockMode.ReadOnly, image.PixelFormat)
    let ptr = NativePtr.ofNativeInt<byte>(bitmapData.Scan0)
    let stride = bitmapData.Stride

    let rgbCube = Array3D.zeroCreate width height 3
    for i = 0 to width - 1 do
        for j = 0 to height - 1 do
            for k = 0 to 2 do
                rgbCube.[i, j, k] <- NativePtr.read<byte>(NativePtr.add ptr (stride * j + i * 3(*an example for 24ppb*) + k))
    rgbCube

1 个答案:

答案 0 :(得分:3)

Image.GetPixelFormatSize(image.PixelFormat);
  

返回指定的颜色深度,以每像素的位数为单位   像素格式。 - Documentation