From 1058dcab20b3a4ab5bd48097978c2a2931fff722 Mon Sep 17 00:00:00 2001 From: Zhiming Wang Date: Sun, 26 Jul 2015 12:56:20 -0700 Subject: optimize Atom, RSS and CC icons for retina display Again using -webkit-image-set. --- source/img/README.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source/img/README.rst') 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 `_. The original PNG can be found `here `_. 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 `_ 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 -- cgit v1.2.1