mirror of
https://github.com/kovidgoyal/calibre.git
synced 2026-02-07 11:33:30 -05:00
Make the ends caps ont heyellow book more like the ones in the original logo. Adda dfrop shadow to the bookmark.
48 lines
1.7 KiB
Python
48 lines
1.7 KiB
Python
#!/usr/bin/env python2
|
|
# vim:fileencoding=utf-8
|
|
from __future__ import (unicode_literals, division, absolute_import,
|
|
print_function)
|
|
|
|
__license__ = 'GPL v3'
|
|
__copyright__ = '2014, Kovid Goyal <kovid at kovidgoyal.net>'
|
|
|
|
import os, shutil, subprocess, sys
|
|
|
|
d, j, a = (getattr(os.path, x) for x in ('dirname', 'join', 'abspath'))
|
|
base = d(a(__file__))
|
|
os.chdir(base)
|
|
|
|
imgsrc = j(d(d(base)), 'imgsrc')
|
|
sources = {'calibre':j(imgsrc, 'calibre.svg'), 'ebook-edit':j(imgsrc, 'tweak.svg'), 'ebook-viewer':j(imgsrc, 'viewer.svg'), 'book':j(imgsrc, 'book.svg')}
|
|
if sys.argv[-1] == 'only-logo':
|
|
sources = {'calibre':sources['calibre']}
|
|
|
|
for name, src in sources.iteritems():
|
|
iconset = name + '.iconset'
|
|
if os.path.exists(iconset):
|
|
shutil.rmtree(iconset)
|
|
os.mkdir(iconset)
|
|
os.chdir(iconset)
|
|
try:
|
|
for sz in (16, 32, 128, 256, 512, 1024):
|
|
iname = 'icon_{0}x{0}.png'.format(sz)
|
|
iname2x = 'icon_{0}x{0}@2x.png'.format(sz // 2)
|
|
if src.endswith('.svg'):
|
|
subprocess.check_call(['rsvg-convert', src, '-w', str(sz), '-h', str(sz), '-o', iname])
|
|
else:
|
|
# We have a 512x512 png image
|
|
if sz == 512:
|
|
shutil.copy2(src, iname)
|
|
else:
|
|
subprocess.check_call(['convert', src, '-resize', '{0}x{0}'.format(sz), iname])
|
|
if sz > 16:
|
|
shutil.copy2(iname, iname2x)
|
|
if sz > 512:
|
|
os.remove(iname)
|
|
for name in (iname, iname2x):
|
|
if os.path.exists(name):
|
|
subprocess.check_call(['optipng', '-o7', '-strip', 'all', name])
|
|
finally:
|
|
os.chdir('..')
|
|
|