}
private void processPaletteFile() {
if (options.getPaletteFile() != null) {
Props colProps = new Props();
colProps.load(options.getPaletteFile().getAbsolutePath());
for (int c = 0; c < 15; c++) {
String s = colProps.get("Color_" + c, "0,0,0");
String sp[] = s.split(",");
if (sp.length >= 3) {
int red = Integer.valueOf(sp[0].trim()) & 0xff;