Class: ImageVoodoo::GifHeaderDirectory

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

Overview

GENERATED

Constant Summary collapse

TAGS =
{
  'Gif Format Version' => ['TAG_GIF_FORMAT_VERSION', :get_string],
  'Image Width' => ['TAG_IMAGE_WIDTH', :get_long],
  'Image Height' => ['TAG_IMAGE_HEIGHT', :get_long],
  'Color Table Size' => ['TAG_COLOR_TABLE_SIZE', :get_string],
  'Is Color Table Sorted' => ['TAG_IS_COLOR_TABLE_SORTED', :get_string],
  'Bits Per Pixel' => ['TAG_BITS_PER_PIXEL', :get_string],
  'Has Global Color Table' => ['TAG_HAS_GLOBAL_COLOR_TABLE', :get_string],
  'Transparent Color Index' => ['TAG_TRANSPARENT_COLOR_INDEX', :get_string],
  'Pixel Aspect Ratio' => ['TAG_PIXEL_ASPECT_RATIO', :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



1271
1272
1273
# File 'lib/image_voodoo/metadata.rb', line 1271

def self.directory_class
  com.drew..gif.GifHeaderDirectory
end