ImageInformation

Public Structure ImageInformation

  Dim Extension As String
  Dim FileExist As Boolean
  Dim FullFileName As String         'Full path and file name of image.
  Dim HorizontalResolution As Single 'Horizontal resolution, in pixels per inch.
  Dim ImageSize As pdfImageSize
  Dim Length As Double               'Length of a file in bytes
  Dim Name As String                 'Image file name without path.
  Dim PDFName As String              'Internal name of image loaded into the pdf document.
  Dim PixelFormat As String          'The pixel format defines the number of bits of memory associated with
                                     'one pixel of data. The format also defines the order of the color
                                     'components within a single pixel of data.

  Dim VerticalResolution As Single   'Vertical resolution, in pixels per inch.
  Dim ValidImage As Boolean

End Structure