-
-
Save AleksandrKudashkin/27decd870e1138796cf4892d8cb2d030 to your computer and use it in GitHub Desktop.
Paperclip(ImageMagic) resize, crop and other action sheet cheat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'400x300' # resize, maintain aspect ratio | |
'400x300!' # force resize, don't maintain aspect ratio | |
'400x' # resize width, maintain aspect ratio | |
'x300' # resize height, maintain aspect ratio | |
'400x300>' # resize only if the image is larger than this | |
'400x300<' # resize only if the image is smaller than this | |
'50x50%' # resize width and height to 50% | |
'400x300^' # resize width, height to minimum 400,300, maintain aspect ratio | |
'2000@' # resize so max area in pixels is 2000 | |
'400x300#' # resize, crop if necessary to maintain aspect ratio (centre gravity) | |
'400x300#ne' # as above, north-east gravity | |
'400x300se' # crop, with south-east gravity | |
'400x300+50+100' # crop from the point 50,100 with width, height 400,300 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment