Initial import
This commit is contained in:
commit
3779fdce2c
48 changed files with 2012 additions and 0 deletions
BIN
utils/bg/FreeHugsBSD.png
Normal file
BIN
utils/bg/FreeHugsBSD.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 536 KiB |
BIN
utils/bg/cyberia-cafe-club.png
Normal file
BIN
utils/bg/cyberia-cafe-club.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.2 MiB |
34
utils/bg/generate-FreeHugsBSD.sh
Normal file
34
utils/bg/generate-FreeHugsBSD.sh
Normal file
|
@ -0,0 +1,34 @@
|
|||
#!/bin/sh
|
||||
# env
|
||||
# Written in 2019 by Lucas
|
||||
# CC0 1.0 Universal/Public domain - No rights reserved
|
||||
#
|
||||
# To the extent possible under law, the author(s) have dedicated all
|
||||
# copyright and related and neighboring rights to this software to the
|
||||
# public domain worldwide. This software is distributed without any
|
||||
# warranty. You should have received a copy of the CC0 Public Domain
|
||||
# Dedication along with this software. If not, see
|
||||
# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
||||
|
||||
: ${CANVAS_BGCOLOR:="#0d0a00"}
|
||||
: ${CANVAS_HEIGHT:=768}
|
||||
: ${CANVAS_WIDTH:=1366}
|
||||
: ${IMAGE_HEIGHT:=500}
|
||||
: ${IMAGE_WIDTH:=500}
|
||||
|
||||
pos_x=$(($CANVAS_WIDTH - $IMAGE_WIDTH))
|
||||
pos_y=$((($CANVAS_HEIGHT - $IMAGE_HEIGHT) / 2))
|
||||
|
||||
if ! tmpfile=$(mktemp -t bg.XXXXXXXXXX); then
|
||||
printf "%s: Can't create temporary file.\n" "${0##*/}" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
trap 'rm -f "$tmpfile"' EXIT INT QUIT TERM
|
||||
|
||||
pngtopam -alphapam FreeHugsBSD.png \
|
||||
| pamscale -width="$IMAGE_WIDTH" -height="$IMAGE_HEIGHT" \
|
||||
>"$tmpfile"
|
||||
ppmmake "$CANVAS_BGCOLOR" "$CANVAS_WIDTH" "$CANVAS_HEIGHT" \
|
||||
| pamcomp -xoff="$pos_x" -yoff="$pos_y" "$tmpfile" \
|
||||
| pamtopng >FreeHugsBSD-bg.png
|
34
utils/bg/generate-cyberia.sh
Normal file
34
utils/bg/generate-cyberia.sh
Normal file
|
@ -0,0 +1,34 @@
|
|||
#!/bin/sh
|
||||
# env
|
||||
# Written in 2019 by Lucas
|
||||
# CC0 1.0 Universal/Public domain - No rights reserved
|
||||
#
|
||||
# To the extent possible under law, the author(s) have dedicated all
|
||||
# copyright and related and neighboring rights to this software to the
|
||||
# public domain worldwide. This software is distributed without any
|
||||
# warranty. You should have received a copy of the CC0 Public Domain
|
||||
# Dedication along with this software. If not, see
|
||||
# <http://creativecommons.org/publicdomain/zero/1.0/>.
|
||||
|
||||
: ${CANVAS_BGCOLOR:="#0d0a00"}
|
||||
: ${CANVAS_HEIGHT:=768}
|
||||
: ${CANVAS_WIDTH:=1366}
|
||||
: ${IMAGE_HEIGHT:=768}
|
||||
: ${IMAGE_WIDTH:=1080}
|
||||
|
||||
pos_x=$((($CANVAS_WIDTH - $IMAGE_WIDTH) / 2))
|
||||
pos_y=$((($CANVAS_HEIGHT - $IMAGE_HEIGHT) / 2))
|
||||
|
||||
if ! tmpfile=$(mktemp -t bg.XXXXXXXXXX); then
|
||||
printf "%s: Can't create temporary file.\n" "${0##*/}" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
trap 'rm -f "$tmpfile"' EXIT INT QUIT TERM
|
||||
|
||||
pngtopam -alphapam cyberia-cafe-club.png \
|
||||
| pamscale -width="$IMAGE_WIDTH" -height="$IMAGE_HEIGHT" \
|
||||
>"$tmpfile"
|
||||
ppmmake "$CANVAS_BGCOLOR" "$CANVAS_WIDTH" "$CANVAS_HEIGHT" \
|
||||
| pamcomp -xoff="$pos_x" -yoff="$pos_y" "$tmpfile" \
|
||||
| pamtopng >cyberia-cafe-club-bg.png
|
Loading…
Add table
Add a link
Reference in a new issue