Class: ImageVoodoo::JpegDirectory

Inherits:
Directory
  • Object
show all
Defined in:
lib/image_voodoo/metadata.rb

Overview

GENERATED

Constant Summary collapse

TAGS =
{
  'Compression Type' => ['TAG_COMPRESSION_TYPE', :get_string],
  'Data Precision' => ['TAG_DATA_PRECISION', :get_string],
  'Image Height' => ['TAG_IMAGE_HEIGHT', :get_long],
  'Image Width' => ['TAG_IMAGE_WIDTH', :get_long],
  'Number Of Components' => ['TAG_NUMBER_OF_COMPONENTS', :get_string],
  'Component Data 1' => ['TAG_COMPONENT_DATA_1', :get_string],
  'Component Data 2' => ['TAG_COMPONENT_DATA_2', :get_string],
  'Component Data 3' => ['TAG_COMPONENT_DATA_3', :get_string],
  'Component Data 4' => ['TAG_COMPONENT_DATA_4', :get_string]
}.freeze

Class Method Summary collapse

Methods inherited from Directory

#[], #exists?, #initialize

Constructor Details

This class inherits a constructor from ImageVoodoo::Directory

Class Method Details

.directory_classObject



1487
1488
1489
# File 'lib/image_voodoo/metadata.rb', line 1487

def self.directory_class
  com.drew..jpeg.JpegDirectory
end