Sha256: 21a6b719a1e8f1d8a8434fa070724bdb164f1f0e4fae18dbfbbb6eaeafd856cd
Contents?: true
Size: 1.56 KB
Versions: 6
Compression:
Stored size: 1.56 KB
Contents
module Fox # # PCX icon # class FXPCXIcon < FXIcon # # Return the suggested file extension for this image type ("pcx"). # def FXPCXIcon.fileExt; end # # Return the MIME type for this image type # def FXPCXIcon.mimeType; end # # Return an initialized FXPCXIcon instance. # # ==== Parameters: # # +a+:: an application instance [FXApp] # +pix+:: a memory buffer formatted in PCX file format [String] # +clr+:: transparency color [FXColor] # +opts+:: options [Integer] # +width+:: width [Integer] # +height+:: height [Integer] # def initialize(a, pix=nil, clr=0, opts=0, width=1, height=1) # :yields: thePCXIcon end end # # Load a PCX 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.fxloadPCX(store); end # # Save a PCX image to a stream. # Returns +true+ on success, +false+ on failure. # # ==== Parameters: # # +store+:: stream to which to write the image data [FXStream] # +data+:: the image pixel data [String] # +transp+:: transparency color [FXColor] # +width+:: width [Integer] # +height+:: height [Integer] # def Fox.fxsavePCX(store, data, transp, width, height); end # # Return +true+ if _store_ (an FXStream instance) contains a PCX image. # def Fox.fxcheckPCX(store); end end
Version data entries
6 entries across 6 versions & 1 rubygems