Is there a way to make RMagick resize an image like this:
- Resize so that both width and height are smaller than, say, 200px, but keep aspect ratio
- If width > 200 and width > height, resize so that width = 200 and resize height accordingly
- If height > 200 and height > width, resize so that height = 200 and resize width accordingly
EDIT: By the way, I am looking for this syntactic way of achieving this, and not API-based manipulation.