File: ICC_Profile.java

package info (click to toggle)
pdftk 1.44-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 5,824 kB
  • sloc: java: 52,396; cpp: 4,377; ansic: 249; makefile: 215; sh: 8
file content (25 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.lowagie.text.pdf;

public class ICC_Profile {
    
    protected byte data[];
    protected int numComponents;
    
    protected ICC_Profile() {
    }
    
    public static ICC_Profile getInstance(byte data[], int numComponents) {
        ICC_Profile icc = new ICC_Profile();
        icc.data = data;
        icc.numComponents = numComponents;
        return icc;
    }
    
    public byte[] getData() {
        return data;
    }
    
    public int getNumComponents() {
        return numComponents;
    }
}