module Magick

def formats(&block)

Returns:
  • (Magick) -
  • (Hash) - the formats hash

Other tags:
    Yieldparam: v - the properties string
    Yieldparam: k - the format name

Other tags:
    Yield: -

Overloads:
  • formats
  • formats
def formats(&block)
  formats = init_formats
  if block
    formats.each(&block)
    self
  else
    formats
  end
end