CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 2008
    Posts
    5

    Reading GeoTiff Files

    HI,
    I am doing a project dealing with geotiff images.
    I want to read the the geotiff header. In the past I've read the header of the BMP files.Similarly I'd like to read the geotiff header displaying all the values in the chronological order.
    Pls help

    Warm Regards,
    Rahul

  2. #2
    Join Date
    May 2002
    Posts
    1,435

    Re: Reading GeoTiff Files

    It's not that different from reading any file with a known content structure (such as a bitmap file). Bitmap files have pre-defined structures that correspond to the header information but Geo TIFF does not. However, if you find good reference material for Geo TIFF (check out the link below) then it's easy enough to create those structures yourself.

    GeoTIFF - A standard image file format for GIS applications

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured