*
*@return The guideline color.
*/
public PDColorSpaceInstance getGuidelineColor()
{
COSArray colorValues = (COSArray)dictionary.getDictionaryObject( "C" );
if( colorValues == null )
{
colorValues = new COSArray();
colorValues.add( COSInteger.ZERO );
colorValues.add( COSInteger.ZERO );
colorValues.add( COSInteger.ZERO );
dictionary.setItem( "C", colorValues );
}
PDColorSpaceInstance instance = new PDColorSpaceInstance( colorValues );
instance.setColorSpace( PDDeviceRGB.INSTANCE );
return instance;