Sha256: 762abe5e79bab7f51b56b05eef5fca71ec05387756291b71fb448cc38bd17f20
Contents?: true
Size: 1.38 KB
Versions: 6
Compression:
Stored size: 1.38 KB
Contents
module Fox # # GIF Cursor class. # class FXGIFCursor < FXCursor # # Return the suggested file extension for this image type ("gif"). # def FXGIFCursor.fileExt; end # # Return an initialized FXGIFCursor instance. # def initialize(a, pix, hx=-1, hy=-1) # :yields: theGIFCursor end end # # Save a GIF (Graphics Interchange Format) image to a stream. # If _fast_ is +true+, the faster Floyd-Steinberg dither method will be used # instead of the slower Wu quantization algorithm. # Returns +true+ on success, +false+ on failure. # # ==== Parameters: # # +store+:: stream to which to write the image data [FXStream] # +data+:: the image pixel data [Array of FXColor] # +width+:: width [Integer] # +height+:: height [Integer] # +fast+:: if +true+, use faster Floyd-Steinberg algorithm [Boolean] # def Fox.fxsaveGIF(store, data, width, height, fast=true); end # # Load a GIF file from a stream. # If successful, returns an array containing the image pixel data (as a # String), the transparency color, the image width and the image height. # If it fails, the function returns +nil+. # # ==== Parameters: # # +store+:: stream from which to read the file data [FXStream] # def Fox.fxloadGIF(store); end # # Return +true+ if _store_ (an FXStream instance) contains a GIF image. # def Fox.fxcheckGIF(store); end end
Version data entries
6 entries across 6 versions & 1 rubygems