module Magick
$Id: misc.rb,v 1.12 2008/02/24 18:26:36 rmagick Exp $ Copyright (C) 2008 Timothy P. Hunter
Defines paint server classes. Eventually this will include gradients.
RVG
is the main class in this library. All graphic elements must be contained within an RVG
object.
Text-related classes
$Id: units.rb,v 1.4 2008/02/24 18:26:37 rmagick Exp $ Copyright (C) 2008 Timothy P. Hunter
Constants
- AnyStretch
- AnyStyle
- AnyWeight
- AreaGeometry
- AspectGeometry
- BoldWeight
- BolderWeight
- CMYKColorspace
- CenterAlign
- CineonLogRGBColorspace
- CondensedStretch
- Effects
- EndAnchor
- ExpandedStretch
- ExtraCondensedStretch
- ExtraExpandedStretch
- FillToBorderMethod
- FloodfillMethod
- GreaterGeometry
- HSBColorspace
- HSLColorspace
- HWBColorspace
- ItalicStyle
- JGeometry
Geometries
- JHeightDistances
- JRelativeHeightDistance
- JRelativeWidthDistance
- JWidthDistances
- LABColorspace
- LeftAlign
- LessGeometry
- LighterWeight
- LineThroughDecoration
- LogColorspace
- Magick4J
- MiddleAnchor
- MinimumGeometry
- NoDecoration
- NormalStretch
- NormalStyle
- NormalWeight
- OHTAColorspace
- ObliqueStyle
- OverlineDecoration
- PercentGeometry
- Pixel
- PointMethod
- QuantumDepth
- QuantumRange
- QuantumScale
- RMagick4J
- Rec601LumaColorspace
- Rec601YCbCrColorspace
- Rec709LumaColorspace
- Rec709YCbCrColorspace
- ReplaceMethod
- ResetMethod
- RightAlign
- SRGBColorspace
- SemiCondensedStretch
- SemiExpandedStretch
- StartAnchor
- TransparentColorspace
ColorspaceType
constants DEF_ENUM(ColorspaceType
)- UltraCondensedStretch
- UltraExpandedStretch
- UnderlineDecoration
- XYZColorspace
- YCCColorspace
- YCbCrColorspace
- YIQColorspace
- YPbPrColorspace
- YUVColorspace
Attributes
trace_proc[W]
Public Class Methods
formats() { |k,v| ... }
click to toggle source
# File lib/RMagick.rb, line 16 def Magick.formats(&block) @@formats ||= Magick.init_formats if block_given? @@formats.each { |k,v| yield(k,v) } self else @@formats end end
nextVal()
click to toggle source
# File lib/rmagick4j/enum.rb, line 57 def self.nextVal @@enumVal = @@enumVal + 1 end