Results 1 to 3 of 3

Thread: file details

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Feb 2009
    Posts
    31

    file details

    Hello All

    I have made an app that resizes images however in windows if you right click and slect properties on the image file there is a details tab and it has lots of data, time created, what model of camera, exposure settings ..... ect.

    How can i read this in my application?

    thanks

    This does not bring in the items in the details list. The image is a tiff file


    Code:
                    Dim fileDetail As IO.FileInfo
                    fileDetail = My.Computer.FileSystem.GetFileInfo(FBA)
    
                    Console.WriteLine("Size: " & fileDetail.L & " byte(s)")
    Last edited by atr232000; Jul 2nd, 2011 at 03:17 PM.

  2. #2
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,413

    Re: file details

    that information is written in the image's EXIF data. here's some more information:

    http://www.vbforums.com/showthread.p...ge+orientation

    edit: but i'm not sure if that applies to tiff files
    Last edited by .paul.; Jul 2nd, 2011 at 04:01 PM.

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Feb 2009
    Posts
    31

    Re: file details

    Thanks I'll take a look ;-)

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