gnocode / noladex.org

People of New Orleans
http://www.noladex.org
21 stars 10 forks source link

Properly scaled images #32

Closed daybreaker closed 13 years ago

daybreaker commented 13 years ago

Images will automatically scale to proper proportions based on the new avatar meta properties (height/width), and any content larger than 300px will be centered within the .person frame


Avatar meta comes from paperclip-meta gem. Access via user.avatar.width / user.avatar.height

To load avatar meta data for current images, run this in console: User.all.each{|u| u.avatar.reprocess!; u.save!}