Skip to content

Instantly share code, notes, and snippets.

@noahmatisoff
noahmatisoff / gist:f4e953f99d361c590988
Last active August 29, 2015 14:16
Generate avatar from initials with rmagick (in Ruby)
require 'rmagick'
module InitalsAvatar
def InitalsAvatar.create(initials, size)
# Canvas sizes
DEFAULT_OUTPUT_SIZE = 100
MIN_CANVAS_SIZE = 100
# Font size as a proportion of the canvas
FONT_RATIO = 0.45