Skip to content

wikinder/logo

Repository files navigation

logo

logo.png

OS: MacOS with Homebrew installed

brew install imagemagick librsvg
  1. Download 1f9f8.svg from Twemoji:
    curl -O https://raw.githubusercontent.com/twitter/twemoji/v14.0.2/assets/svg/1f9f8.svg
    
  2. 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
    
  3. Crop to create an 800x800 PNG (which is live as icon.png for use in og:image):
    convert -crop +8+0 -crop -8-16 1f9f8-816px.png 1f9f8-800px.png
    
  4. Resize it to 200px and trim (resulting in 136x200):
    convert -geometry x200 1f9f8-800px.png 1f9f8-200px.png
    
    convert -trim 1f9f8-200px.png 1f9f8-200px-trimmed.png
    
  5. Convert WikindeR.svg to a PNG of 200px height (resulting in 965x200):
    rsvg-convert -h 200 -o WikindeR-200px.png WikindeR.svg
    
  6. Merge the two images side by side with a 19px space in between (resulting in 1120x200):
    convert 1f9f8-200px-trimmed.png WikindeR-200px.png -background transparent -splice 19x0+0+0 +append -chop 19x0+0+0 logo.png
    

This was created as follows:

  1. Download toys_r_us.ttf (by unknown) from CDNFonts:
    curl -O https://fonts.cdnfonts.com/s/95273/toys_r_us.ttf
    
  2. Upload it to google-font-to-svg-path and generate WikindeR.svg with the following settings:
    • Text: WikindeR
    • Size: 100
    • Separate Characters: Yes
    • Stroke Width: 0
    • Non-Scaling Stroke: No
    • (leave all other settings as default)
  3. Manually edit the SVG in a text editor. In particular, change the color of each letter with reference to Encycolorpedia.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks