Alright Ive been asked to write some software for a companys os platform to support tga and other such images. Ive been researching tga to begin with and I was wondering how to exclude certain bytes or to include new ones to change the format. This way I can handle different parts of this image on my own how i want to handle them. Any insight would be greatly appreciated.
If you want to exclude them...ignore them :|
If you want to include them...add them!
A linked-list sounds good for easy manipulation of what you are asking (at least by the sounds of it), though if it's C, you're out of luck on the linked list part...
struct tga_byte
{
void *next;
void *first;
unsigned char data;
// other stuff
}
You'll have to decompress the entire Targa file before you can change it's format.
Really, your question makes no sense. You want to change the format, add and remove a few bytes here and there? Just read the original file and write a new file with your bytes added / removed. Does it matter that it's a tga file? Not at all. It probably won't be a tga file after you change the format of it though.
Quote from: rabbit on August 23, 2005, 02:44 AM
though if it's C, you're out of luck on the linked list part...
Youwhatnow?
Last time I tried to use a struct in any of my C I got errors about undefined type, and I haven't learned a way to make linked lists to easy in C thus far. AFAIK structs are C++?
Structs are C.
It depends on how you define it. Semantically, AFAIK, the following are differently-named (besides capitalization):
typedef struct tagByteNode {
unsigned char data;
struct tagByteNode* next;
} BYTE_NODE, *PBYTE_NODE;
struct byteNode {
unsigned char data;
byteNode* next;
}
AFAIK, you can't reference the first as "tagByteNode", only as BYTE_NODE, or via a pointer as PBYTE_NODE. The latter you reference by the name you give the structure.
Nevermind about being out of luck then.