Specifically, the default scaling profile uses the 'keep' scale property; see https://github.com/plone/plone.scale/blob/master/plone/scale/scale.py#L62
This scales without cropping.
It's useful to set the plone.allow_sizes
registry key to allow custom tags, eg.
http://192.168.15.156:8080/Plone/media/4qrcrmn.jpg/@@images/image/tile
However, this doesn't respect the requested size; it simple proportionally scales the image.
I've been digging through the source of https://github.com/plone/plone.app.imaging/blob/master/src/plone/app/imaging/scaling.py#L179 trying to understand what's happening, but there doesn't appear to be a way to override the direction
property here?
Is there some other way of doing this, or is the only option to create custom views for the Image type?