目前正在尝试将 C 用于以前在 python (pypy) 中完成的工作。我想我会尝试用 C 语言编写它(以获得最佳速度),并使用 ctypes 进行通信。
现在我想做的是从位图(bmp 文件)中获取像素缓冲区,将其发送到 C 函数,该函数将原始缓冲区转换为 R、G、B 值的平面数组并将其返回给 python。但是在尝试将“缓冲区”转换为 R、G、B 值时,我遇到了困难。在 python 中,我会简单地使用“struct”模块:B,G,R = struct.unpack('<BBB', buffer[i:i+3])
我应该如何在 C 中做同样的事情?
Python:
from bmplib import Bitmap
import ctypes
lib = ctypes.CDLL('_bitmap.dll')
bmp = Bitmap()
bmp.open('4x4.bmp')
buf = bmp._rawAsArray() #Returns a array.array() of char (raw pixel-data)
addr, count = buf.buffer_info()
lib.getData.argtypes = []
arr = ctypes.cast(addr, ctypes.POINTER(ctypes.c_char))
lib.getData(arr, count) #Does not return anything yet..
C 尝试转换像素失败:
#include <stdio.h>
void getData(char *, const int);
void getData(char * array, const int length) {
int i = 0;
while(i < length) {
/* ----- Clearly wrong as i got some HUGE number----- */
printf("%d, ", ((int *) array)[i] << 8); //B
printf("%d, ", ((int *) array)[i+1] << 8); //G
printf("%d\n", ((int *) array)[i+2] << 8); //R
i += 3;
}
//return total;
}