Valhalla Legends Archive

Programming => General Programming => C/C++ Programming => Topic started by: TheNewOne on August 23, 2005, 02:05 AM

Title: TGA and other image handling.
Post by: TheNewOne on August 23, 2005, 02:05 AM
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.
Title: Re: TGA and other image handling.
Post by: R.a.B.B.i.T on August 23, 2005, 02:44 AM
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
}
Title: Re: TGA and other image handling.
Post by: Eric on August 23, 2005, 01:51 PM
You'll have to decompress the entire Targa file before you can change it's format.
Title: Re: TGA and other image handling.
Post by: Adron on August 24, 2005, 09:21 AM
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.
Title: Re: TGA and other image handling.
Post by: Arta on August 24, 2005, 10:17 AM
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?
Title: Re: TGA and other image handling.
Post by: R.a.B.B.i.T on August 24, 2005, 03:25 PM
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++?
Title: Re: TGA and other image handling.
Post by: Blaze on August 24, 2005, 03:38 PM
Structs are C.
Title: Re: TGA and other image handling.
Post by: MyndFyre on August 24, 2005, 05:09 PM
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.
Title: Re: TGA and other image handling.
Post by: R.a.B.B.i.T on August 24, 2005, 06:45 PM
Nevermind about being out of luck then.