OS: MacOS with Homebrew installed
brew install imagemagick librsvg
- Download
1f9f8.svgfrom Twemoji:curl -O https://raw.githubusercontent.com/twitter/twemoji/v14.0.2/assets/svg/1f9f8.svg - Convert it to an 816x816 transparent PNG (which will have a 16px margin at the bottom):
rsvg-convert -h 816 -o 1f9f8-816px.png 1f9f8.svg - Crop to create an 800x800 PNG (which is live as
icon.pngforog:image; favicon was created based on this):convert -crop +8+0 -crop -8-16 1f9f8-816px.png 1f9f8-800px.png - Resize it to 200px and trim (resulting in 136x200):
convert -geometry x200 1f9f8-800px.png 1f9f8-200px.pngconvert -trim 1f9f8-200px.png 1f9f8-200px-trimmed.png - Convert
WikindeR.svgto a PNG of 200px height (resulting in 965x200):rsvg-convert -h 200 -o WikindeR-200px.png WikindeR.svg - Merge the two images side by side with a 59px space in between (resulting in 1160x200):
convert 1f9f8-200px-trimmed.png WikindeR-200px.png -background transparent -splice 59x0+0+0 +append -chop 59x0+0+0 logo.png
This was created as follows:
- Download
toys_r_us.ttffrom CDNFonts:curl -O https://fonts.cdnfonts.com/s/95273/toys_r_us.ttf - Upload it to google-font-to-svg-path and generate
WikindeR.svgwith the following settings:- Text: WikindeR
- Size: 100
- Separate Characters: Yes
- Stroke Width: 0
- Non-Scaling Stroke: No
- (leave all other settings as default)
- Manually edit the SVG in a text editor. In particular, change the color of each letter with reference to Encycolorpedia.
1f9f8.svg (c) 2019 Twitter, Inc and other contributors. CC BY 4.0
toys_r_us.ttf (c) Unknown
Any modifications we made are licensed under CC0.