1 7 8 17 18 package java.awt.color; 19 20 import java.awt.image.LookupTable ; 21 import sun.awt.color.ProfileDeferralInfo; 22 23 50 51 52 53 public class ICC_ProfileGray 54 extends ICC_Profile { 55 56 59 ICC_ProfileGray(long ID) { 60 super(ID); 61 } 62 63 66 ICC_ProfileGray(ProfileDeferralInfo pdi) { 67 super(pdi); 68 } 69 70 71 77 public float[] getMediaWhitePoint() { 78 return super.getMediaWhitePoint(); 79 } 80 81 82 98 public float getGamma() { 99 float theGamma; 100 101 theGamma = super.getGamma(ICC_Profile.icSigGrayTRCTag); 102 return theGamma; 103 } 104 105 123 public short[] getTRC() { 124 short[] theTRC; 125 126 theTRC = super.getTRC(ICC_Profile.icSigGrayTRCTag); 127 return theTRC; 128 } 129 130 } 131 132 | Popular Tags |