84 lines
2.1 KiB
Bash
Executable File
84 lines
2.1 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
#
|
|
# Olive Community Edition - Non-Linear Video Editor
|
|
# Copyright (C) 2025 Olive CE Team
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
# genicons.sh
|
|
#
|
|
# A simple script that uses Inkscape to generate multiple PNG sizes from SVGs.
|
|
# It also generates a Qt resource file including all of them for usage in
|
|
# Olive.
|
|
#
|
|
# While Qt (and therefore Olive) can load SVG files into icons during runtime,
|
|
# this is slow and lags startup. This script is intended to mitigate that, and
|
|
# while it adds an extra step if an SVG is modified, it immensely benefits
|
|
# the end user.
|
|
|
|
OUTPUT_SIZES=( 16 32 64 128 )
|
|
|
|
if [ $# -lt 1 ]
|
|
then
|
|
echo "Generates sized PNG icons from SVG files"
|
|
echo "Usage: $0 [options] <icon-pack-name>"
|
|
echo
|
|
echo "Example: $0 olive-dark"
|
|
echo
|
|
echo "Options:"
|
|
echo " -l Skip existing files (only create files that don't exist)"
|
|
exit 1
|
|
fi
|
|
|
|
SKIP_EXISTING=0
|
|
|
|
for var in "$@"
|
|
do
|
|
if [ "$var" == "-l" ]
|
|
then
|
|
SKIP_EXISTING=1
|
|
fi
|
|
done
|
|
|
|
PACKNAME="${@: -1}"
|
|
SVGDIR=$PACKNAME/svg
|
|
PNGDIR=$PACKNAME/png
|
|
|
|
mkdir -p $PNGDIR
|
|
|
|
OutputPng() {
|
|
if [ $SKIP_EXISTING -eq 0 ] || [ ! -f "$2.png" ]; then
|
|
inkscape --export-filename $2.png --export-width $s --export-height $s $1
|
|
fi
|
|
if [ $SKIP_EXISTING -eq 0 ] || [ ! -f "$2.disabled.png" ]; then
|
|
convert $2.png -alpha set -background none -channel A -evaluate multiply 0.25 +channel $2.disabled.png
|
|
fi
|
|
}
|
|
|
|
for f in $SVGDIR/*.svg
|
|
do
|
|
FNBASE=$(basename -s .svg $f)
|
|
|
|
for s in "${OUTPUT_SIZES[@]}"
|
|
do
|
|
OutputPng $f $PNGDIR/$FNBASE.$s
|
|
done
|
|
done
|