|
Alain Reguera Delgado |
2c7b25 |
#!/bin/bash
|
|
Alain Reguera Delgado |
2c7b25 |
######################################################################
|
|
Alain Reguera Delgado |
2c7b25 |
#
|
|
Alain Reguera Delgado |
2c7b25 |
# palette_convertGplToHex.sh -- This function takes one palette
|
|
Alain Reguera Delgado |
2c7b25 |
# produced by GIMP (e.g., syslinux.gpl) as input and outputs the
|
|
Alain Reguera Delgado |
2c7b25 |
# list of hexadecimal colors and their respective index position the
|
|
Alain Reguera Delgado |
2c7b25 |
# `pnmtolss16' program needs (e.g., #RRGGBB=0 #RRGGBB=1 ... [all
|
|
Alain Reguera Delgado |
2c7b25 |
# values in the same line]).
|
|
Alain Reguera Delgado |
2c7b25 |
#
|
|
Alain Reguera Delgado |
2c7b25 |
# Written by:
|
|
Alain Reguera Delgado |
2c7b25 |
# * Alain Reguera Delgado <al@centos.org.cu>, 2009-2013
|
|
Alain Reguera Delgado |
2c7b25 |
#
|
|
Alain Reguera Delgado |
2c7b25 |
# Copyright (C) 2009-2013 The CentOS Artwork SIG
|
|
Alain Reguera Delgado |
2c7b25 |
#
|
|
Alain Reguera Delgado |
2c7b25 |
# This program is free software; you can redistribute it and/or modify
|
|
Alain Reguera Delgado |
2c7b25 |
# it under the terms of the GNU General Public License as published by
|
|
Alain Reguera Delgado |
2c7b25 |
# the Free Software Foundation; either version 2 of the License, or (at
|
|
Alain Reguera Delgado |
2c7b25 |
# your option) any later version.
|
|
Alain Reguera Delgado |
2c7b25 |
#
|
|
Alain Reguera Delgado |
2c7b25 |
# This program is distributed in the hope that it will be useful, but
|
|
Alain Reguera Delgado |
2c7b25 |
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
Alain Reguera Delgado |
2c7b25 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Alain Reguera Delgado |
2c7b25 |
# General Public License for more details.
|
|
Alain Reguera Delgado |
2c7b25 |
#
|
|
Alain Reguera Delgado |
2c7b25 |
# You should have received a copy of the GNU General Public License
|
|
Alain Reguera Delgado |
2c7b25 |
# along with this program; if not, write to the Free Software
|
|
Alain Reguera Delgado |
2c7b25 |
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
Alain Reguera Delgado |
2c7b25 |
#
|
|
Alain Reguera Delgado |
2c7b25 |
######################################################################
|
|
Alain Reguera Delgado |
2c7b25 |
|
|
Alain Reguera Delgado |
2c7b25 |
function palette_convertGplToHex {
|
|
Alain Reguera Delgado |
2c7b25 |
|
|
Alain Reguera Delgado |
2c7b25 |
# Create list of colors to be processed by `pnmtolss16'.
|
|
Alain Reguera Delgado |
2c7b25 |
echo "${PALETTE_GPL_COLORS}" | nl | gawk '{ printf "%s=%d ", $2, $1 - 1 }' \
|
|
Alain Reguera Delgado |
2c7b25 |
> ${PALETTE_HEX}
|
|
Alain Reguera Delgado |
2c7b25 |
|
|
Alain Reguera Delgado |
2c7b25 |
}
|