由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - create and display BMP image from 2-D array
相关主题
effective C++里的memory pool 一问:菜鸟请教C问题
why do we still use dynamic allocation?question about structure initializationa and reference
为什么用try catch不住exception?C++ Interview Question
关于内存泄漏内存分配问题
alloc这个函数究竟做些啥活呢?a small question about c++ memory allocation
array allocation in csizeof(string)
"brk()" 和 mmap() 有什么区别? (转载)请教关于allocator member function 的问题
C++一个string的小问题在子函数内开内存,返回主函数指针然后释放空间是不是很糟糕的(转载)
相关话题的讨论汇总
话题: bmp话题: display话题: array话题: create话题: width
进入Programming版参与讨论
1 (共1页)
s********z
发帖数: 5411
1
Hello, I am new to C++ and MFC and was trying to create a true color bmp
from R,G,B channel images and display it. Now I have three band images Rband
[width][height], Gband[width][height], Bband[width][height]. All three bands
are 1 byte 2-D array and are known. Now I am wondering how to I fill the
memory pic allocated below to be able to display the image.
struct
{
BITMAPINFOHEADER bih;
unsigned long Colors[256];
}
bilutc; // current BITMAPINFO with LUT values
if(bC
1 (共1页)
进入Programming版参与讨论
相关主题
在子函数内开内存,返回主函数指针然后释放空间是不是很糟糕的(转载)alloc这个函数究竟做些啥活呢?
怎样高效管理内存?array allocation in c
关于C/C++里的Static variable的memory allocation/initializa"brk()" 和 mmap() 有什么区别? (转载)
linux内存分配中page的几个问题C++一个string的小问题
effective C++里的memory pool 一问:菜鸟请教C问题
why do we still use dynamic allocation?question about structure initializationa and reference
为什么用try catch不住exception?C++ Interview Question
关于内存泄漏内存分配问题
相关话题的讨论汇总
话题: bmp话题: display话题: array话题: create话题: width