Hey
I’m using mini_magick to create some square thumbnail using the
following code…
image.resize ‘x200’
image.resize ‘200x<’
image.resize ‘50%’
image.gravity ‘center’
image.crop ‘100x100+0+0’
image.write("#{RAILS_ROOT}/public/images/members/#{@user_id}/#{@id}_100px#{image_file_extension}")
everything works fine, except the image is very blurred.
Do you have any idea what I could be doing wrong?
Thanks