145146147148149150151152153154155156
* @return The gamma value. */ public float getGamma() { float retval = 1.0f; COSNumber gamma = (COSNumber)dictionary.getDictionaryObject( COSName.getPDFName( "Gamma" ) ); if( gamma != null ) { retval = gamma.floatValue(); } return retval; }