Class: Fox::FXPNGIcon
- Defined in:
- rdoc-sources/FXPNGIcon.rb
Overview
Portable Network Graphics (PNG) Icon
Instance Attribute Summary
Attributes inherited from FXIcon
Attributes inherited from FXImage
#data, #dataPtr, #options, #pixels
Attributes inherited from FXDrawable
Attributes inherited from FXId
Class Method Summary collapse
-
.fileExt ⇒ Object
Return the suggested file extension for this image type (“png”).
-
.mimeType ⇒ Object
Return the MIME type for this image type.
-
.supported? ⇒ Boolean
Return
true
if PNG image file format is supported.
Instance Method Summary collapse
-
#initialize(a, pix = nil, clr = 0, opts = 0, width = 1, height = 1) ⇒ FXPNGIcon
constructor
Return an initialized FXPNGIcon instance.
Methods inherited from FXImage
#blend, #crop, #fade, #fill, #getPixel, #gradient, #hasAlpha?, #hgradient, #initialize_without_data_string, #loadPixels, #mirror, #pixel_string, #release, #render, #restore, #rotate, #savePixels, #scale, #setPixel, #setPixels, #setPixels_without_data_string, #vgradient, #xshear, #yshear
Methods inherited from FXDrawable
Methods inherited from FXId
#create, #created?, #destroy, #detach, #runOnUiThread
Methods inherited from FXObject
#bind, #handle, #load, #save, subclasses
Constructor Details
#initialize(a, pix = nil, clr = 0, opts = 0, width = 1, height = 1) ⇒ FXPNGIcon
Return an initialized FXPNGIcon instance.
Parameters:
a
-
an application instance Fox::FXApp
pix
-
a memory buffer formatted in PNG file format [String]
clr
-
transparency color Fox::FXColor
opts
-
options [Integer]
width
-
width [Integer]
height
-
height [Integer]
31 32 |
# File 'rdoc-sources/FXPNGIcon.rb', line 31 def initialize(a, pix=nil, clr=0, opts=0, width=1, height=1) # :yields: thePNGIcon end |
Class Method Details
.fileExt ⇒ Object
Return the suggested file extension for this image type (“png”).
9 |
# File 'rdoc-sources/FXPNGIcon.rb', line 9 def FXPNGIcon.fileExt; end |
.mimeType ⇒ Object
Return the MIME type for this image type
14 |
# File 'rdoc-sources/FXPNGIcon.rb', line 14 def FXPNGIcon.mimeType; end |
.supported? ⇒ Boolean
Return true
if PNG image file format is supported.
17 |
# File 'rdoc-sources/FXPNGIcon.rb', line 17 def FXPNGIcon.supported? ; end |