File: make_icons.sh

package info (click to toggle)
minidlna 1.1.2%2Bdfsg-1.1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,384 kB
  • ctags: 1,648
  • sloc: ansic: 19,041; sh: 4,836; makefile: 52; python: 33; sed: 16
file content (107 lines) | stat: -rwxr-xr-x 4,387 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
#!/bin/bash
#
# Generate a free icons.c for minidlna from Debian's SVG logo
#
# Copyright (C) 2011 BenoƮt Knecht <benoit.knecht@fsfe.org>
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. Neither the name of the University nor the names of its contributors
#    may be used to endorse or promote products derived from this software
#    without specific prior written permission.
#
# Usage: ./make_icons.sh ${debian_svg_logo} > icons.c
#
#        where ${debian_svg_logo} is the name of the SVG logo you want to
#        convert. Currently, the Debian SVG logo without the "Debian" text can
#        be obtained with:
#
#        wget http://www.debian.org/logos/openlogo-nd.svg
#
#        You'll need to have inkscape and imagemagick installed for this script
#        to work.

svg="${1}"
png="$(mktemp)"
jpg="$(mktemp)"

cat <<EOF
/* Debian Open Use Logo
 *
 * The Debian logo can be obtained in various formats from
 *
 *     http://www.debian.org/logos/
 *
 * and is licensed under the following terms:
 *
 *   Copyright (c) 1999 Software in the Public Interest
 *
 *   Permission is hereby granted, free of charge, to any person obtaining a
 *   copy of this software and associated documentation files (the "Software"),
 *   to deal in the Software without restriction, including without limitation
 *   the rights to use, copy, modify, merge, publish, distribute, sublicense,
 *   and/or sell copies of the Software, and to permit persons to whom the
 *   Software is furnished to do so, subject to the following conditions:
 *
 *   The above copyright notice and this permission notice shall be included in
 *   all copies or substantial portions of the Software.
 *
 *   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 *   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 *   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 *   THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 *   LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 *   FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 *   DEALINGS IN THE SOFTWARE.
 */
EOF

inkscape -e "${png}" -h 48 "${svg}" > /dev/null
mogrify -gravity center -extent 48x48 -background none "${png}"
convert "${png}" -background white -flatten jpg:"${jpg}"
echo ''
echo '/* Small Debian PNG logo (without "Debian") */'
echo 'unsigned char'
xxd -p -c 24 "${png}" | sed -e '    s/../\\x&/g' \
                            -e '1   s/^/png_sm\[\] =   "/' \
                            -e '1 ! s/^/             "/' \
                            -e '    s/$/"/' \
                            -e '$   s/$/;/'

inkscape -e "${png}" -h 120 "${svg}" > /dev/null
mogrify -gravity center -extent 120x120 -background none "${png}"
echo ''
echo '/* Large Debian PNG logo (without "Debian") */'
echo 'unsigned char'
xxd -p -c 24 "${png}" | sed -e '    s/../\\x&/g' \
                            -e '1   s/^/png_lrg\[\] =  "/' \
                            -e '1 ! s/^/             "/' \
                            -e '    s/$/"/' \
                            -e '$   s/$/;/'

echo ''
echo '/* Small Debian JPEG logo (without "Debian") */'
echo 'unsigned char'
xxd -p -c 24 "${jpg}" | sed -e '    s/../\\x&/g' \
                            -e '1   s/^/jpeg_sm\[\] =  "/' \
                            -e '1 ! s/^/             "/' \
                            -e '    s/$/"/' \
                            -e '$   s/$/;/'

convert "${png}" -background white -flatten jpg:"${jpg}"
echo ''
echo '/* Large Debian JPEG logo (without "Debian") */'
echo 'unsigned char'
xxd -p -c 24 "${jpg}" | sed -e '    s/../\\x&/g' \
                            -e '1   s/^/jpeg_lrg\[\] = "/' \
                            -e '1 ! s/^/             "/' \
                            -e '    s/$/"/' \
                            -e '$   s/$/;/'

rm -f "${png}" "${jpg}"