[ Log On ]
  • Home
  • Tst
  • Cha
  • Enc
  • Code
  • IP
  • Fun
  • Sub
  • DigF
  • Cis
  • Com
  • Db
  • About
  • Netsim

TIF

[Back] This is a page for TIF file analysis (Header). Upload a TIF file (or try a sample file):

Try an example

  • File 1. File 1 View
  • File 2. File 2 View
  • File 3. File 3 View
  • File 4. File 4 View
  • File 5. File 5 View
  • File 6. File 6 View
  • File 7. File 7 View

What are we looking for?

For a TIF file, we look for the byte sequence 4949 or the ASCII sequence of II

Try your own

Or enter your own URL to analyse the first six sectors of the file:

File contents analysis

-- File contents go here. Click on a file from "Try and Example" to view.

Sample code

 public string getTif(System.IO.Stream file)
        {
            string TextBox1 = "";

            byte[] b = ReadFully(file, file.Length);

            TextBox1 = "Starting tag (should be II - Big Indian): " + (char)b[0] + (char)b[1] + "<br/>";
            TextBox1 += "Version: " + Global.intToHex(b[2]) + "<br/>";

            return (TextBox1);
        }