我有一些bmp通过photoshop保存在32位。 前24位应表示RGB,最后8位应表示alpha通道。 我正在加载我的位图:
Bitmap* bStart = new Bitmap("starten.bmp");
我正在加载文件并设置Alpha通道的值
Bitmap::Bitmap(const char* filename) {
FILE* file;
file = fopen(filename, "rb");
if(file != NULL) { // file opened
BITMAPFILEHEADER h;
fread(&h, sizeof(BITMAPFILEHEADER), 1, file); //reading the FILEHEADER
fread(&this->ih, sizeof(BITMAPINFOHEADER), 1, file);
this->pixels = new GLbyte[this->ih.biHeight * this->ih.biWidth * this->ih.biBitCount / 8];
fread(this->pixels, this->ih.biBitCount / 8 * this->ih.biHeight * this->ih.biWidth, 1, file);
fclose(file);
for (int i = 3; i < this->ih.biHeight * this->ih.biWidth * this->ih.biBitCount / 8; i+=4) {
this->pixels[i] = 255;
}
}
}
设置纹理:
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bStart->ih.biWidth, bStart->ih.biHeight, 0, GL_RGBA, GL_UNSIGNED_BYTE, bStart->pixels);
初始化的东西:
glutInit(argcp, argv);
glutInitDisplayMode(GLUT_SINGLE | GLUT_RGBA | GLUT_DEPTH);
//not necessary because we using fullscreen
//glutInitWindowSize(550, 550);
//glutInitWindowPosition(100, 100);
glutCreateWindow(argv[0]); //creating the window
glutFullScreen(); //go into fullscreen mode
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
glEnable( GL_BLEND );
glShadeModel(GL_SMOOTH);
glEnable(GL_DEPTH_TEST);
glPixelStorei(GL_UNPACK_ALIGNMENT, 1); //art und weise wie texturen gespeicehrt werden
glClearColor (1.0, 0.6, 0.4, 0.0);
//setting the glut functions
glutDisplayFunc(displayCallback);
glutKeyboardFunc(keyboardCallback);
glutMainLoop(); //starting the opengl mainloop... and there we go
我可以在我的应用程序中看到我的纹理但是它们的背景不透明......它有点浅蓝色。 我做错了什么?
答案 0 :(得分:2)
我有一些bmp通过photoshop保存在32位。前24位应代表RGB,最后8位应代表alpha通道。
虽然这可以实现,但是DIB文件中的这种alpha通道(实际上是.BMPs的结构实际上被调用的)从未被正确指定。所以它可能根本就没有存储。但是,当您在DIB加载器中用1覆盖alpha值时,这无关紧要......我的意思是那部分:
for (int i = 3; i < this->ih.biHeight * this->ih.biWidth * this->ih.biBitCount / 8; i+=4) { this->pixels[i] = 255; }