| #!/bin/bash |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function render_doIdentityImageFormats { |
| |
| |
| local FILE="$1" |
| |
| |
| local FORMATS=$(render_getConfOption "$2" '2-') |
| |
| |
| if [[ -f ${FILE}.png ]];then |
| |
| |
| if [[ "$FORMATS" != "" ]];then |
| |
| |
| |
| for FORMAT in $FORMATS;do |
| cli_printMessage "${FILE}.${FORMAT}" "AsSavedAsLine" |
| convert -quality 85 ${FILE}.png ${FILE}.${FORMAT} |
| done |
| |
| fi |
| |
| fi |
| |
| } |