class ChunkyPNG::Palette

def initialize(enum, decoding_map = nil)

Parameters:
  • decoding_map (Array) -- An array of colors in the exact order at which
  • enum (Enumerbale) -- The set of colors to include in this palette.
def initialize(enum, decoding_map = nil)
  super(enum)
  @decoding_map = decoding_map if decoding_map
end