Sha256: 42302e74b8619f6290d3f3071efeb1515667aa9ce1e9d71b7fd1299d7508c85a

Contents?: true

Size: 674 Bytes

Versions: 5

Compression:

Stored size: 674 Bytes

Contents

module Fox
  #
  # Iris RGB Image
  #
  class FXRGBImage < FXImage
    #
    # Return the suggested file extension for this image type ("rgb").
    #
    def FXRGBImage.fileExt; end
    
    #
    # Return the MIME type for this image type
    #
    def FXRGBImage.mimeType; end

    #
    # Return an initialized FXRGBImage instance.
    #
    # ==== Parameters:
    #
    # +a+::	an application instance [FXApp]
    # +pix+::	a memory buffer formatted in IRIS RGB file format [String]
    # +opts+::	options [Integer]
    # +w+::	width [Integer]
    # +h+::	height [Integer]
    #
    def initialize(a, pix=nil, opts=0, w=1, h=1) # :yields: theRGBImage
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fxruby-1.6.0 rdoc-sources/FXRGBImage.rb
fxruby-1.6.1 rdoc-sources/FXRGBImage.rb
fxruby-1.6.2 rdoc-sources/FXRGBImage.rb
fxruby-1.6.3 rdoc-sources/FXRGBImage.rb
fxruby-1.6.4 rdoc-sources/FXRGBImage.rb