diff --git a/docs/image.md b/docs/image.md index 973fb094423..7ca8a9acf3e 100644 --- a/docs/image.md +++ b/docs/image.md @@ -395,7 +395,9 @@ More details about `resize` and `scale` can be found at http://frescolib.org/doc Determines how to resize the image when the frame doesn't match the raw image dimensions. Defaults to `cover`. -- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding). +- `cover`: Scale the image uniformly (maintain the image's aspect ratio) so that + * both dimensions (width and height) of the image will be equal to or larger than the corresponding dimension of the view (minus padding) + * at least one dimension of the scaled image will be equal to the corresponding dimension of the view (minus padding) - `contain`: Scale the image uniformly (maintain the image's aspect ratio) so that both dimensions (width and height) of the image will be equal to or less than the corresponding dimension of the view (minus padding).