根据字符串生成图片

源码

  1. gem install letter_avatar 然后bundle install
  2. config/environments/development.rb增加
   LetterAvatar.setup do |config|
     config.cache_base_path='public/system/lets' # default is 'public/system'
   end

生成的图片就在public/system/lets

  1. application_helper中增加
   include LetterAvatar::AvatarHelper
  1. views中使用letter_avatar_tag(string, pic_size)显示图片

蛮方便的,但不知道占不占用空间,另外生成的图片挺单调的。。。。

你可能感兴趣的:(根据字符串生成图片)