Skip to content

Commit

Permalink
Merge pull request #46 from jellyfin/tizen
Browse files Browse the repository at this point in the history
Add icons for Tizen
  • Loading branch information
anthonylavado authored May 8, 2021
2 parents a1e7fc3 + 47af476 commit ca613a7
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 0 deletions.
Binary file added branding/tizen/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 25 additions & 0 deletions branding/tizen/icon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
36 changes: 36 additions & 0 deletions branding/tizen/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added branding/tizen/logo_bg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added branding/tizen/logo_fg.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions branding/tizen/mkpng.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/bin/bash

ICON_INPUT=icon.svg
ICON_OUTPUT=icon.png

LOGO_INPUT=logo.svg
LOGO_OUTPUT_BG=logo_bg.png
LOGO_OUTPUT_FG=logo_fg.png

echo "Export Logo"
inkscape -w 512 -h 423 "$ICON_INPUT" -o "$ICON_OUTPUT"

echo "Export Logo Background"
inkscape -w 1920 -h 1080 --export-id="solid-background" --export-id-only "$LOGO_INPUT" -o "$LOGO_OUTPUT_BG"

echo "Export Logo Image"
grep -v 'id="solid-background"' "$LOGO_INPUT" | inkscape -w 1920 -h 1080 --pipe -o "$LOGO_OUTPUT_FG"

0 comments on commit ca613a7

Please sign in to comment.