将PNG作为纹理加载并将其结合到球体上

loading a png as a texture and binding it to a sphere

本文关键字:结合 PNG 纹理 加载      更新时间:2023-10-16

我找不到有关如何加载png文件并将其用作纹理将其绑定到球体的任何体面的教程。是否有库功能可以执行此操作?我将如何将其绑定到球体上?我已经选择了这个,但没有奏效,没有错误,但是质地没有加载到球体上。我在glutmainloop()

之前使用特定文件调用LoadTexture

这是我加载文件的代码:

GLuint LoadTexture( const char * filename, int width, int height )
    {
GLuint texture;
unsigned char * data;
FILE * file;
//The following code will read in our PNG file
file = fopen( filename, "rb" );
if ( file == NULL ) return 0;
data = (unsigned char *)malloc( width * height * 3 );
fread( data, width * height * 3, 1, file );
fclose( file );
glGenTextures( 1, &texture ); //generate the texture with 
glBindTexture( GL_TEXTURE_2D, texture ); //bind the texture
glTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, 
GL_MODULATE ); //set texture environment parameters

//even better quality, but this will do for now.
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER,
 GL_LINEAR );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER,
 GL_LINEAR );
//Here we are setting the parameter to repeat the texture 
//to the edge of our shape. 
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, 
 GL_REPEAT );
glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, 
 GL_REPEAT );
//Generate the texture
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0,
 GL_RGB, GL_UNSIGNED_BYTE, data);
free( data ); //free the texture
return texture; //return whether it was successfull

}

这是我创建球的地方

void renderScene(void) {
// Clear Color and Depth Buffers
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
 glEnable( GL_TEXTURE_2D );
// Reset transformations
glLoadIdentity();
glBindTexture( GL_TEXTURE_2D, texture );
glTexEnvf(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
glPushMatrix();
glTranslatef(0.0,2.0,-6);
glRotatef(angle, 0.0f, 2.0, -6.0f);
glutSolidSphere(1,50,50);
glPopMatrix();

angle+=0.4f;
glDisable(GL_TEXTURE_2D);
glutSwapBuffers();
 }

我做了什么吗?

您将压缩的PNG数据馈送到OpenGL。必须首先对其进行解压缩,因为OpenGL纹理功能无法理解PNG。您可以使用某些图像库进行解压缩,例如stb_image.c

png是压缩文件,您不能只是读取它们,并期望OpenGL知道如何解码它们。加载PNG的推荐方法是用libpng。

这是使用libpng的一个示例,该示例将在2D数组中同步读取PNG文件中的读数。OpenGL期望一个平坦的1D阵列,因此您需要自己将其弄平,但这很简单。

我意识到有100万个图书馆被扔给您,但我强烈建议土壤。加载PNG就像

一样容易
GLuint tex_2d = SOIL_load_OGL_texture( "img.png", SOIL_LOAD_AUTO, SOIL_CREATE_NEW_ID, SOIL_FLAG_INVERT_Y);

我建议使用诸如devil之类的图像加载库,它为您完成所有肮脏的工作。我也建议您使用Modern OpenGL API,但这最终是您的决定:)