Type   Default Value   Read Only   Description
Byte N/A Yes The byte sequence of the jpeg thumbnail image within the Exif data.

 

   
Notes
 
     

The Item property allows you to access the jpeg thumbnail image as it appears within the Exif data.

For details of the way in which Exif data can be parsed, please refer to http://www.exif.org

   
See Also
 
     

None.

   
Example
 
     

[Visual Basic]
Set gr = CreateObject("ImageGlue7.Graphic")
Set ge = CreateObject("ImageGlue7.Gestalt")
gr.ReadExif = True
gr.SetFile "rez\myexif.jpg"
theBytes = gr.Exif.Thumbnail
If theBytes.Length > 0 Then
  ge.Save "Thumbnail.jpg", theBytes
End If

This example illustrates how to retrieve and save the exif thumbnail image.