aboutsummaryrefslogtreecommitdiffstats
path: root/docs/resources/make_cover.sh
blob: 6494bd4c20d44399cc88d1e15cb135889a22577e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash

cat cover.svg | sed -e 's/{title}/Low level CAN binder/' \
    -e 's/font-size:87.5px/font-size:50px/g' \
    -e 's/{subtitle}//g' \
    -e 's/{version}/Version 1.0/g' \
    -e 's/{date}/March 2017/g' \
    > /tmp/cover.svg

inkscape --without-gui --export-png=../cover.jpg \
    --export-background="#ffffff" -w 1800 -h 2360 /tmp/cover.svg

inkscape --without-gui --export-png=../cover_small.jpg \
    --export-background="#ffffff" -w 200 -h 262 /tmp/cover.svg