//----------------------------------------------------------------------------- // // DevIL Volume Texture Splitter // Copyright (C) 2000-2002 by Denton Woods // Last modified: 4/22/2002 <--Y2K Compliant! =] // // Filename: test/VolTex/VolTex.c // // Description: Splits a volume texture into its individual slices // and saves them to separate files for analysis. // //----------------------------------------------------------------------------- // Required include files. #include #include #include #include #include int main(int argc, char **argv) { ILuint i; ILuint ImgId, id; ILenum Error; char FileName[256], FileNameNum[256], FName[256], Ext[256]; ILuint PlaneSize; ILubyte *Data; ILinfo Info; // We use the filename specified in the first argument of the command-line. if (argc < 2) { fprintf(stderr, "VolTex : DevIL volume texture application.\n"); fprintf(stderr, "Usage : VolTex [output]\n"); fprintf(stderr, "Default output is test1-n.tga\n"); return 1; } // Check if the shared lib's version matches the executable's version. if (ilGetInteger(IL_VERSION_NUM) < IL_VERSION || iluGetInteger(ILU_VERSION_NUM) < ILU_VERSION) { printf("DevIL version is different...exiting!\n"); return 2; } // Initialize DevIL. ilInit(); // Generate the main image name to use. ilGenImages(1, &ImgId); // Bind this image name. ilBindImage(ImgId); // Loads the image specified by File into the image named by ImgId. if (!ilLoadImage(argv[1])) { printf("Could not open file...exiting.\n"); return 3; } // Display the image's dimensions to the end user. printf("Width: %d Height: %d Depth: %d Bpp: %d\n", ilGetInteger(IL_IMAGE_WIDTH), ilGetInteger(IL_IMAGE_HEIGHT), ilGetInteger(IL_IMAGE_DEPTH), ilGetInteger(IL_IMAGE_BYTES_PER_PIXEL)); // Enable this to let us overwrite the destination file if it already exists. ilEnable(IL_FILE_OVERWRITE); // If argv[2] is present, we save to this filename, else we save to test.tga. if (argc > 2) strcpy(FileName, argv[2]); //ilSaveImage(argv[2]); else strcpy(FileName, "test"); //ilSaveImage("test.tga"); if (argc > 3) strcpy(Ext, argv[3]); else strcpy(Ext, ".tga"); iluGetImageInfo(&Info); PlaneSize = ilGetInteger(IL_IMAGE_PLANESIZE); Data = ilGetData(); ilGenImages(1, &id); ilBindImage(id); for (i = 0; i < Info.Depth; i++) { strcpy(FName, FileName); itoa(i, FileNameNum, 10); strcat(FName, FileNameNum); strcat(FName, Ext); ilTexImage(Info.Width, Info.Height, 1, Info.Bpp, Info.Format, Info.Type, Data + PlaneSize * i); ilSaveImage(FName); } ilDeleteImages(1, &id); // We're done with the image, so let's delete it. ilDeleteImages(1, &ImgId); // Simple Error detection loop that displays the Error to the user in a human-readable form. while ((Error = ilGetError())) { printf("Error: %s\n", iluErrorString(Error)); } return 0; }