91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

opengl中TGA圖像加載技術

發布時間:2020-06-26 16:30:08 來源:網絡 閱讀:766 作者:WZM3558862 欄目:開發技術

TGA格式圖像是游戲中十分常見的一種圖像格式,所以有必要了解其內部格式以及編程實現。

TGA圖像一般有非壓縮和壓縮兩種格式,下面分別進行介紹。

一、非壓縮TGA圖像


注:前面的標記綠色的部分(共12字節)表示對于所有的非壓縮TGA格式圖像值都是相同的!所以通常用來在讀取數據時鑒別是否為TGA圖像。


























下面的程序實現了繪制一個立方體,并進行紋理貼圖。


需要注意的是:TGA圖像中數據存放的順序是BGR(A),而在OpenGL中順序是RGB(A),所以在進行紋理生成的時候必須先進行格式的轉化。

在OpenGL中只能加載24位或者32位的TGA圖像生成紋理。

TGATexture.h定義了一些結構體以及函數聲明:

[cpp] view plain copy print?

  1. #ifndef TGATEXTURE_H  

  2. #define TGATEXTURE_H  

  3.   

  4. #include <GL/glut.h>  

  5. #include <iostream>  

  6.   

  7. using namespace std;  

  8.   

  9. //紋理結構體定義  

  10. typedef struct  

  11. {  

  12.     GLubyte *p_w_picpathData;//圖像數據  

  13.     GLuint bpp;//像素深度  

  14.     GLuint width;//圖像寬度  

  15.     GLuint height;//圖像高度  

  16.     GLuint texID;//對應的紋理ID  

  17. }TextureImage;  

  18.   

  19. //加載TGA圖像,生成紋理  

  20. bool LoadTGA(TextureImage *texture,char *fileName);  

  21.   

  22. #endif  

TGATexture.cpp則包含加載TGA圖像生成紋理的函數具體實現:



[cpp] view plain copy print?

  1. #include "TGATexture.h"  

  2.   

  3. //加載TGA圖像(無壓縮格式),生成紋理  

  4. bool LoadTGA(TextureImage *texture, char *filename)         // Loads A TGA File Into Memory  

  5. {      

  6.     GLubyte     TGAheader[12]={0,0,2,0,0,0,0,0,0,0,0,0};    // Uncompressed TGA Header  

  7.     GLubyte     TGAcompare[12];                             // Used To Compare TGA Header  

  8.     GLubyte     header[6];                                  // First 6 Useful Bytes From The Header  

  9.     GLuint      bytesPerPixel;                              // Holds Number Of Bytes Per Pixel Used In The TGA File  

  10.     GLuint      p_w_picpathSize;                                  // Used To Store The Image Size When Setting Aside Ram  

  11.     GLuint      temp;                                       // Temporary Variable  

  12.     GLuint      type=GL_RGBA;                               // Set The Default GL Mode To RBGA (32 BPP)  

  13.   

  14.     FILE *file = fopen(filename, "rb");                     // Open The TGA File  

  15.   

  16.     if( file==NULL ||                                       // Does File Even Exist?  

  17.         fread(TGAcompare,1,sizeof(TGAcompare),file)!=sizeof(TGAcompare) ||  // Are There 12 Bytes To Read?  

  18.         memcmp(TGAheader,TGAcompare,sizeof(TGAheader))!=0               ||  // Does The Header Match What We Want?  

  19.         fread(header,1,sizeof(header),file)!=sizeof(header))                // If So Read Next 6 Header Bytes  

  20.     {  

  21.         if (file == NULL)                                   // Did The File Even Exist? *Added Jim Strong*  

  22.             return false;                                   // Return False  

  23.         else  

  24.         {  

  25.             fclose(file);                                   // If Anything Failed, Close The File  

  26.             return false;                                   // Return False  

  27.         }  

  28.     }  

  29.   

  30.     texture->width  = header[1] * 256 + header[0];           // Determine The TGA Width  (highbyte*256+lowbyte)  

  31.     texture->height = header[3] * 256 + header[2];           // Determine The TGA Height (highbyte*256+lowbyte)  

  32.   

  33.     //OpenGL中紋理只能使用24位或者32位的TGA圖像  

  34.     if( texture->width   <=0  ||                              // Is The Width Less Than Or Equal To Zero  

  35.         texture->height  <=0  ||                              // Is The Height Less Than Or Equal To Zero  

  36.         (header[4]!=24 && header[4]!=32))                   // Is The TGA 24 or 32 Bit?  

  37.     {  

  38.         fclose(file);                                       // If Anything Failed, Close The File  

  39.         return false;                                       // Return False  

  40.     }  

  41.   

  42.     texture->bpp = header[4];                            // Grab The TGA's Bits Per Pixel (24 or 32)  

  43.     bytesPerPixel   = texture->bpp/8;                        // Divide By 8 To Get The Bytes Per Pixel  

  44.     p_w_picpathSize       = texture->width*texture->height*bytesPerPixel;   // Calculate The Memory Required For The TGA Data  

  45.   

  46.     texture->p_w_picpathData=(GLubyte *)malloc(p_w_picpathSize);     // Reserve Memory To Hold The TGA Data  

  47.   

  48.     if( texture->p_w_picpathData==NULL ||                          // Does The Storage Memory Exist?  

  49.         fread(texture->p_w_picpathData, 1, p_w_picpathSize, file)!=p_w_picpathSize)    // Does The Image Size Match The Memory Reserved?  

  50.     {  

  51.         if(texture->p_w_picpathData!=NULL)                     // Was Image Data Loaded  

  52.             free(texture->p_w_picpathData);                        // If So, Release The Image Data  

  53.   

  54.         fclose(file);                                       // Close The File  

  55.         return false;                                       // Return False  

  56.     }  

  57.   

  58.     //RGB數據格式轉換,便于在OpenGL中使用  

  59.     for(GLuint i=0; i<int(p_w_picpathSize); i+=bytesPerPixel)      // Loop Through The Image Data  

  60.     {                                                       // Swaps The 1st And 3rd Bytes ('R'ed and 'B'lue)  

  61.         temp=texture->p_w_picpathData[i];                          // Temporarily Store The Value At Image Data 'i'  

  62.         texture->p_w_picpathData[i] = texture->p_w_picpathData[i + 2];    // Set The 1st Byte To The Value Of The 3rd Byte  

  63.         texture->p_w_picpathData[i + 2] = temp;                    // Set The 3rd Byte To The Value In 'temp' (1st Byte Value)  

  64.     }  

  65.   

  66.     fclose (file);                                          // Close The File  

  67.   

  68.     // Build A Texture From The Data  

  69.     glGenTextures(1, &texture[0].texID);                    // Generate OpenGL texture IDs  

  70.   

  71.     glBindTexture(GL_TEXTURE_2D, texture[0].texID);         // Bind Our Texture  

  72.     glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);   // Linear Filtered  

  73.     glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);   // Linear Filtered  

  74.   

  75.     if (texture[0].bpp==24)                                 // Was The TGA 24 Bits  

  76.     {  

  77.         type=GL_RGB;                                        // If So Set The 'type' To GL_RGB  

  78.     }  

  79.   

  80.     glTexImage2D(GL_TEXTURE_2D, 0, type, texture[0].width, texture[0].height, 0, type, GL_UNSIGNED_BYTE, texture[0].p_w_picpathData);  

  81.   

  82.     return true;                                            // Texture Building Went Ok, Return True  

  83. }  

main.cpp主程序:



[cpp] view plain copy print?

  1. #include "TGATexture.h"  

  2.   

  3. TextureImage texture[1];  

  4.   

  5. GLfloat xRot,yRot,zRot;//control cube's rotation  

  6.   

  7. int init()  

  8. {  

  9.     if(!LoadTGA(&texture[0],"GSK1.tga"))  

  10.         return GL_FALSE;  

  11.     glEnable(GL_TEXTURE_2D);  

  12.     glShadeModel(GL_SMOOTH);  

  13.     glClearColor(0.0f,0.0f,0.0f,0.5f);  

  14.     glClearDepth(1.0f);  

  15.     glEnable(GL_DEPTH_TEST);  

  16.     glDepthFunc(GL_LEQUAL);  

  17.     glHint(GL_PERSPECTIVE_CORRECTION_HINT,GL_NICEST);  

  18.     return GL_TRUE;  

  19. }  

  20.   

  21. void display()  

  22. {  

  23.     glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);  

  24.     glLoadIdentity();  

  25.     glTranslatef(0.0f,0.0f,-5.0f);  

  26.     glRotatef(xRot,1.0f,0.0f,0.0f);  

  27.     glRotatef(yRot,0.0f,1.0f,0.0f);  

  28.     glRotatef(zRot,0.0f,0.0f,1.0f);  

  29.   

  30.     glBindTexture(GL_TEXTURE_2D,texture[0].texID);  

  31.   

  32.     glBegin(GL_QUADS);   

  33.     // Front Face   

  34.     // Bottom Left Of The Texture and Quad   

  35.     glTexCoord2f(0.0f, 0.0f); glVertex3f(-1.0f, -1.0f,  1.0f);   

  36.     // Bottom Right Of The Texture and Quad   

  37.     glTexCoord2f(1.0f, 0.0f); glVertex3f( 1.0f, -1.0f,  1.0f);   

  38.     // Top Right Of The Texture and Quad   

  39.     glTexCoord2f(1.0f, 1.0f); glVertex3f( 1.0f,  1.0f,  1.0f);   

  40.     // Top Left Of The Texture and Quad   

  41.     glTexCoord2f(0.0f, 1.0f); glVertex3f(-1.0f,  1.0f,  1.0f);   

  42.     glEnd();   

  43.   

  44.     glBindTexture(GL_TEXTURE_2D,texture[0].texID);  

  45.     glBegin(GL_QUADS);   

  46.     // Back Face   

  47.     // Bottom Right Of The Texture and Quad   

  48.     glTexCoord2f(1.0f, 0.0f); glVertex3f(-1.0f, -1.0f, -1.0f);   

  49.     // Top Right Of The Texture and Quad   

  50.     glTexCoord2f(1.0f, 1.0f); glVertex3f(-1.0f,  1.0f, -1.0f);   

  51.     // Top Left Of The Texture and Quad   

  52.     glTexCoord2f(0.0f, 1.0f); glVertex3f( 1.0f,  1.0f, -1.0f);   

  53.     // Bottom Left Of The Texture and Quad   

  54.     glTexCoord2f(0.0f, 0.0f); glVertex3f( 1.0f, -1.0f, -1.0f);   

  55.     glEnd();   

  56.   

  57.     glBindTexture(GL_TEXTURE_2D,texture[0].texID);  

  58.     glBegin(GL_QUADS);   

  59.     // Top Face   

  60.     // Top Left Of The Texture and Quad   

  61.     glTexCoord2f(0.0f, 1.0f); glVertex3f(-1.0f,  1.0f, -1.0f);   

  62.     // Bottom Left Of The Texture and Quad   

  63.     glTexCoord2f(0.0f, 0.0f); glVertex3f(-1.0f,  1.0f,  1.0f);   

  64.     // Bottom Right Of The Texture and Quad   

  65.     glTexCoord2f(1.0f, 0.0f); glVertex3f( 1.0f,  1.0f,  1.0f);   

  66.     // Top Right Of The Texture and Quad   

  67.     glTexCoord2f(1.0f, 1.0f); glVertex3f( 1.0f,  1.0f, -1.0f);   

  68.     glEnd();   

  69.   

  70.     glBindTexture(GL_TEXTURE_2D,texture[0].texID);  

  71.     glBegin(GL_QUADS);   

  72.     // Bottom Face   

  73.     // Top Right Of The Texture and Quad   

  74.     glTexCoord2f(1.0f, 1.0f); glVertex3f(-1.0f, -1.0f, -1.0f);   

  75.     // Top Left Of The Texture and Quad   

  76.     glTexCoord2f(0.0f, 1.0f); glVertex3f( 1.0f, -1.0f, -1.0f);   

  77.     // Bottom Left Of The Texture and Quad   

  78.     glTexCoord2f(0.0f, 0.0f); glVertex3f( 1.0f, -1.0f,  1.0f);   

  79.     // Bottom Right Of The Texture and Quad   

  80.     glTexCoord2f(1.0f, 0.0f); glVertex3f(-1.0f, -1.0f,  1.0f);   

  81.     glEnd();   

  82.   

  83.     glBindTexture(GL_TEXTURE_2D,texture[0].texID);  

  84.     glBegin(GL_QUADS);   

  85.     // Right face   

  86.     // Bottom Right Of The Texture and Quad   

  87.     glTexCoord2f(1.0f, 0.0f); glVertex3f( 1.0f, -1.0f, -1.0f);   

  88.     // Top Right Of The Texture and Quad   

  89.     glTexCoord2f(1.0f, 1.0f); glVertex3f( 1.0f,  1.0f, -1.0f);   

  90.     // Top Left Of The Texture and Quad   

  91.     glTexCoord2f(0.0f, 1.0f); glVertex3f( 1.0f,  1.0f,  1.0f);   

  92.     // Bottom Left Of The Texture and Quad   

  93.     glTexCoord2f(0.0f, 0.0f); glVertex3f( 1.0f, -1.0f,  1.0f);   

  94.     glEnd();   

  95.   

  96.     glBindTexture(GL_TEXTURE_2D,texture[0].texID);  

  97.     glBegin(GL_QUADS);   

  98.     // Left Face   

  99.     // Bottom Left Of The Texture and Quad   

  100.     glTexCoord2f(0.0f, 0.0f); glVertex3f(-1.0f, -1.0f, -1.0f);   

  101.     // Bottom Right Of The Texture and Quad   

  102.     glTexCoord2f(1.0f, 0.0f); glVertex3f(-1.0f, -1.0f,  1.0f);   

  103.     // Top Right Of The Texture and Quad   

  104.     glTexCoord2f(1.0f, 1.0f); glVertex3f(-1.0f,  1.0f,  1.0f);   

  105.     // Top Left Of The Texture and Quad   

  106.     glTexCoord2f(0.0f, 1.0f); glVertex3f(-1.0f,  1.0f, -1.0f);   

  107.     glEnd();   

  108.   

  109.     glutSwapBuffers();  

  110. }  

  111.   

  112. void reshape(int w,int h)  

  113. {  

  114.     if (0 == h)  

  115.         h = 1;  

  116.       

  117.     glViewport(0,0,(GLsizei)w,(GLsizei)h);  

  118.     glMatrixMode(GL_PROJECTION);  

  119.     glLoadIdentity();  

  120.     gluPerspective(60.0f,(GLfloat)w / (GLfloat)h,1,100);  

  121.     glMatrixMode(GL_MODELVIEW);  

  122.     glLoadIdentity();  

  123. }  

  124.   

  125. void keyboard(unsigned char key,int x,int y)  

  126. {  

  127.     switch(key){  

  128.         case 'x':  

  129.             xRot += 1.0f;  

  130.             glutPostRedisplay();  

  131.             break;  

  132.         case 'y':  

  133.             yRot += 1.0f;  

  134.             glutPostRedisplay();  

  135.             break;  

  136.         case 'z':  

  137.             zRot += 1.0f;  

  138.             glutPostRedisplay();  

  139.             break;  

  140.         default:  

  141.             break;  

  142.     }  

  143. }  

  144.   

  145. int main(int argc,char** argv)  

  146. {  

  147.     glutInit(&argc,argv);  

  148.     glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB);  

  149.     glutInitWindowSize(400,400);  

  150.     glutInitWindowPosition(100,100);  

  151.     glutCreateWindow("Texture Map");  

  152.     init();  

  153.     glutDisplayFunc(display);  

  154.     glutReshapeFunc(reshape);  

  155.     glutKeyboardFunc(keyboard);  

  156.     glutMainLoop();  

  157.     return 0;  

  158. }  




向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吴桥县| 铅山县| 开封县| 五莲县| 衡山县| 锡林浩特市| 遂宁市| 水富县| 宁海县| 神木县| 邳州市| 攀枝花市| 莒南县| 泗阳县| 仙桃市| 江城| 星子县| 乐山市| 丽江市| 五家渠市| 靖安县| 沅陵县| 泰安市| 栾川县| 抚顺县| 顺义区| 嘉黎县| 冕宁县| 中江县| 喜德县| 景德镇市| 涟水县| 肥乡县| 镇雄县| 河源市| 黄浦区| 榆林市| 遂平县| 石河子市| 周口市| 玛纳斯县|