Detailed information on file types needed [modified]
-
I need a web site that offers detailed information on file types. The types i am actually concerned with at the moment are Bitmap (.bmp), Icon (.ico), Mac Icon (.icns), Cursor (.cur), and Icon Library (.icl). I, obviously am not asking you to explain to me the structure of those file types, just a good web site that can. I can't seem to find much on the web, and messing around in a hex editor can only teach you so much.
if (your.Life == lifestyles.Programming) { your.Cool = true; } else { your.Cool = false; }
modified on Tuesday, July 22, 2008 3:47 PM
-
I need a web site that offers detailed information on file types. The types i am actually concerned with at the moment are Bitmap (.bmp), Icon (.ico), Mac Icon (.icns), Cursor (.cur), and Icon Library (.icl). I, obviously am not asking you to explain to me the structure of those file types, just a good web site that can. I can't seem to find much on the web, and messing around in a hex editor can only teach you so much.
if (your.Life == lifestyles.Programming) { your.Cool = true; } else { your.Cool = false; }
modified on Tuesday, July 22, 2008 3:47 PM
A .BMP file consists of a BITMAPFILEHEADER structure[^] followed by a BITMAPINFO or a BITMAPCOREINFO struct, followed by the pixel data. This one's WELL documented :) ICO (icon image file format)[^] Searching ".someextension file format" on Google always seems to give me good results. Mark
Mark Salsbery Microsoft MVP - Visual C++ :java: