aboutsummaryrefslogtreecommitdiff
path: root/source/img/README.rst
diff options
context:
space:
mode:
authorZhiming Wang <zmwangx@gmail.com>2015-07-26 12:56:20 -0700
committerZhiming Wang <zmwangx@gmail.com>2015-07-26 12:56:20 -0700
commit1058dcab20b3a4ab5bd48097978c2a2931fff722 (patch)
treef0048966da078aef97fbfbfb1446a48f774d0ba0 /source/img/README.rst
parent0cb4c326419ca68c690841f35a02671703471f24 (diff)
downloadmy_new_personal_website-1058dcab20b3a4ab5bd48097978c2a2931fff722.tar.xz
my_new_personal_website-1058dcab20b3a4ab5bd48097978c2a2931fff722.zip
optimize Atom, RSS and CC icons for retina display
Again using -webkit-image-set.
Diffstat (limited to 'source/img/README.rst')
-rw-r--r--source/img/README.rst12
1 files changed, 6 insertions, 6 deletions
diff --git a/source/img/README.rst b/source/img/README.rst
index f8dceeee..6f300dbe 100644
--- a/source/img/README.rst
+++ b/source/img/README.rst
@@ -14,15 +14,15 @@ Credit to `audreyr/favicon-cheat-sheet <https://github.com/audreyr/favicon-cheat
The feed icon isn't so easy to create with TikZ (I don't know the necessary parameters), so I downloaed one (256x256) from `IconFinder <https://www.iconfinder.com/icons/49861/feed_rss_icon>`_. The original PNG can be found `here <http://i.imgur.com/4XE3iL3.png>`_. Then I processed the PNG with ``optipng``, the result of which is ``feed-256.png``. The smaller ``feed-14.png`` is generated through::
- convert feed-256.png -resize 14x14 feed-14.png
- optipng feed-14.png
+ for size in 16 32; do convert feed-256.png -resize $sizex$size feed-$size.png; done
+ optipng feed-*.png
Next, the horizontal mirror ``rss-14.png`` is generated through::
- convert feed-14.png -flop rss-14.png
- optipng rss-14.png
+ for size in 16 32; do convert feed-$size.png -flop rss-$size.png; done
+ optipng rss-*.png
The CreativeCommons icon ``cc.svg`` is pulled from `the official downloads page <https://creativecommons.org/about/downloads>`_ and converted to 16x16 PNG through::
- convert cc.svg -resize 16x16 cc-16.png
- optipng cc-16.png
+ for size in 16 32; do convert cc.svg -resize $sizex$size cc-$size.png; done
+ optipng cc-*.png