Simple cropping with Paperclip

前端 未结 1 1538
长情又很酷
长情又很酷 2020-12-12 22:25

I would like to crop images on upload using Paperclip to get square thumbs from the center of the original picture. I find out a method in documentation that seems to do exa

1条回答
  •  情歌与酒
    2020-12-12 23:06

    You only need to use # instead of > as a parameter:

    has_attached_file :picture, :styles => { :thumb => "200x200#" }

    0 讨论(0)
提交回复
热议问题