| */
public static Color convertRGBICCColor(Element paintedElement,
SVGColor colorDef,
float opacity,
BridgeContext ctx) {
SVGICCColor iccColor = colorDef.getICCColor();
Color color = null;
if (iccColor != null){
color = convertICCColor(paintedElement, iccColor, opacity, ctx);
}
if (color == null){
|