Copy Code
|
|
---|---|
// Create a 24-bit RGB image (initially filled with black pixels) HIGEAR createRGB24(AT_DIMENSION w, AT_DIMENSION h) { HIGEAR hImage; HIGDIBINFO hDIB; AT_INT d[3] = { 8, 8, 8 }; // 8 bits per channel for R, G, B IG_DIB_info_create(&hDIB, w, h, IG_COLOR_SPACE_ID_RGB, 3, d); IG_image_create(hDIB, &hImage); return hImage; } |