Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

paperclip resizing

I have been working with the paperclip gem however, I can't seem to generate the size I want.

I have images with different sizes and I intend to resize them.

I need to have an image with a height of 175px and I don't care about the width.

I have tried working with this 175x175>, 175>x175 and 175x175#.

like image 607
Teej Avatar asked Sep 01 '26 19:09

Teej


1 Answers

You may try only passing a height and no width, which should be a valid ImageMagick option

x175

Instead of

175x175
like image 171
Dylan Markow Avatar answered Sep 03 '26 09:09

Dylan Markow