Uses of Class
org.extex.color.model.RgbColor

Packages that use RgbColor
org.extex.backend.documentWriter.itextpdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.pdf This package contains a backend of ExTeX which produce a PDF-file. 
org.extex.backend.documentWriter.postscript.converter This package contains converters for the a PostScript DocumentWriter. 
org.extex.backend.documentWriter.rtf This package contains a DocumentWriter to produce RTF files. 
org.extex.color This package contains some classes for color support. 
org.extex.color.model This package contains implementing classes for different color models. 
 

Uses of RgbColor in org.extex.backend.documentWriter.itextpdf
 

Methods in org.extex.backend.documentWriter.itextpdf with parameters of type RgbColor
 java.lang.Object PdfColorVisitor.visitRgb(RgbColor color, java.lang.Object value)
          This method is called when an RgbColor has been encountered.
 

Uses of RgbColor in org.extex.backend.documentWriter.pdf
 

Methods in org.extex.backend.documentWriter.pdf with parameters of type RgbColor
 java.lang.Object PdfColorVisitor.visitRgb(RgbColor color, java.lang.Object value)
          This method is called when an RgbColor has been encountered.
 

Uses of RgbColor in org.extex.backend.documentWriter.postscript.converter
 

Methods in org.extex.backend.documentWriter.postscript.converter with parameters of type RgbColor
 void Ps.setrgb(java.io.PrintStream out, RgbColor rgb)
          Produce a PS setrgbcolor instruction.
 

Uses of RgbColor in org.extex.backend.documentWriter.rtf
 

Methods in org.extex.backend.documentWriter.rtf with parameters of type RgbColor
protected  int RtfDocument.mapColor(RgbColor col)
          Add a color to the color table if necessary and return a unique index.
 

Uses of RgbColor in org.extex.color
 

Methods in org.extex.color that return RgbColor
 RgbColor BasicColorConverter.toRgb(Color color)
          Convert an arbitrary color to the RGB model.
 RgbColor ColorConverter.toRgb(Color color)
          Convert an arbitrary color to the RGB model.
 RgbColor NoColorConverter.toRgb(Color color)
          Convert an arbitrary color to the RGB model.
 

Methods in org.extex.color with parameters of type RgbColor
 java.lang.Object ColorVisitor.visitRgb(RgbColor color, java.lang.Object value)
          This method is called when an RgbColor has been encountered.
 

Uses of RgbColor in org.extex.color.model
 

Methods in org.extex.color.model that return RgbColor
static RgbColor ColorFactory.getRgb(int red, int green, int blue, int alpha)
          Get a new color in the RGB color model.