| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function render_doIdentityImageBrands { |
| |
| local SOURCEFILE='' |
| local TARGETDIR='' |
| local TARGETFILE='' |
| |
| |
| local FILE="$1" |
| |
| |
| local FORMATS="$2" |
| |
| |
| render_doIdentityImageFormats "$FILE" "$FORMATS" |
| |
| |
| cli_printMessage "${FILE}.xbm (`gettext "2 colors grayscale"`)" "AsSavedAsLine" |
| convert -colorspace gray -colors 2 \ |
| ${FILE}.png \ |
| ${FILE}.xbm |
| |
| |
| cli_printMessage "${FILE}-emboss.png" "AsSavedAsLine" |
| convert -emboss 1 \ |
| ${FILE}.png \ |
| ${FILE}-emboss.png |
| |
| } |