18

我一直在寻找一个简单的解决方案,以在 c++ 中将精灵添加到我的 OpenGL GLUT 简单月球着陆器游戏中,看来我必须使用 bmp,因为它们最容易加载并将它们用作矩形上的纹理。

我如何才能将 bmp 加载为纹理呢?

4

5 回答 5

36

看我简单的 c 实现函数来加载纹理。

GLuint LoadTexture( const char * filename )
{
  GLuint texture;
  int width, height;
  unsigned char * data;

  FILE * file;
  file = fopen( filename, "rb" );

  if ( file == NULL ) return 0;
  width = 1024;
  height = 512;
  data = (unsigned char *)malloc( width * height * 3 );
  //int size = fseek(file,);
  fread( data, width * height * 3, 1, file );
  fclose( file );

  for(int i = 0; i < width * height ; ++i)
  {
    int index = i*3;
    unsigned char B,R;
    B = data[index];
    R = data[index+2];

    data[index] = R;
    data[index+2] = B;
  }

  glGenTextures( 1, &texture );
  glBindTexture( GL_TEXTURE_2D, texture );
  glTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE,GL_MODULATE );
  glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,GL_LINEAR_MIPMAP_NEAREST );

  glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,GL_LINEAR );
  glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S,GL_REPEAT );
  glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T,GL_REPEAT );
  gluBuild2DMipmaps( GL_TEXTURE_2D, 3, width, height,GL_RGB, GL_UNSIGNED_BYTE, data );
  free( data );

  return texture;
}

上面的函数返回纹理数据。将纹理数据存储在变量中

GLuint texture;
texture= LoadTexture( "your_image_name.bmp" );

现在您可以使用 glBindTexture 绑定纹理

glBindTexture (GL_TEXTURE_2D, texture);
于 2012-09-21T03:54:17.397 回答
4

从 OpenGL_3_2_Utils 查看我的 TextureLoader (TextureLoader.h + TextureLoader.cpp):

https://github.com/mortennobel/OpenGL_3_2_Utils

这两个文件不依赖于任何其他文件,并且应该在任何版本的 OpenGL(和任何平台)上无缝工作。示例用法可以在文件注释中找到。

于 2012-09-20T17:59:13.823 回答
4

您可以使用库 GLAUX 和SOIL(Simple OpenGL Image Library)。还有其他用于 OpenGL 的图像库

于 2012-09-21T02:23:00.940 回答
3

如何在 GLUT 上加载 bmp 以将其用作纹理?

另一个非常简单的解决方案是使用STB 库,它可以在GitHub-nothings/stb中找到。

所需要的只是一个源文件,即头文件“stb_image.h”。它不需要链接任何库文件或编译任何其他源文件。

包含头文件并通过设置预处理器定义启用图像读取STB_IMAGE IMPLEMENTATION

#define STB_IMAGE_IMPLEMENTATION
#include <stb_image.h>

图像文件可以通过函数读取stbi_load

const char *filename = .....; // path and filename
int         req_channels = 3; // 3 color channels of BMP-file   

int width = 0, height = 0, channels = 0;
stbi_uc *image = stbi_load( filename, &width, &height, &channels, 3 ); 

当图像加载到纹理对象时,GL_UNPACK_ALIGNMENT必须设置为 1。
默认GL_UNPACK_ALIGNMENT为 4,因此假定图像的每一行对齐为 4 个字节。一个 BMP 文件的共同像素大小为 3 个字节,并且被紧密打包,这会导致错位。
加载图像后,可以通过以下方式释放内存stbi_image_free

GLuint texture_obj = 0;
if ( image != nullptr )
{
    glGenTextures(1, &texture_obj);
    glBindTexture(GL_TEXTURE_2D, texture_obj);

    glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
    glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGB, GL_UNSIGNED_BYTE, image);
    glPixelStorei(GL_UNPACK_ALIGNMENT, 4); // default

    stbi_image_free( image );
}
于 2018-06-01T10:43:14.160 回答
1

改良版

GLuint LoadTexture(GLuint tex, const char * filename, int width, int height)
{
//bmp 24 bit
unsigned char * data;
unsigned char R,G,B;
FILE * file;

//open .bmp
file = fopen(filename, "rb");

if(file == NULL)return 0;
//get memory for data
data =(unsigned char *)malloc(width * height * 3);
//data skip offset 
fseek(file,128,0);
//read file to data
fread(data, width * height * 3, 1, file);
//close file
fclose(file);

//transpose R,G,B values
int index;
for(int i = 0; i < width * height ; ++i)
    {
    index = i*3;
    B = data[index]; G = data[index+1]; R = data[index+2];
    data[index] = R; data[index+1] = G; data[index+2] = B;
    }

//create a texture
glGenTextures(1, &tex);
glBindTexture(GL_TEXTURE_2D, tex);
gluBuild2DMipmaps(GL_TEXTURE_2D, 3, width, height,GL_RGB, GL_UNSIGNED_BYTE, data);

//texture filtering
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); 
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_DECAL);
//glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);

//free memory
free(data);
return 0;
}


void init(void)
{
//texture loading, bmp 24 bit
LoadTexture(1, "01.bmp", 316, 316);
LoadTexture(2, "02.bmp", 316, 316);
LoadTexture(3, "05.bmp", 316, 316);
LoadTexture(4, "03.bmp", 316, 316);
LoadTexture(5, "06.bmp", 316, 316);
LoadTexture(6, "04.bmp", 316, 316);

. . . . . . . . . . . .

在此处输入图像描述

Linux

gcc cube.c -o cube -lglut -lGL -lGLU

视窗

tcc cube.c -o cube.exe -LC:\tcc\lib -lopengl32 -lglu32 -lglut32 -Wl,-subsystem=windows

于 2021-03-23T10:38:34.803 回答