From ca18fa0bdf2841e83a2aa9f7807988aba68c0ca9 Mon Sep 17 00:00:00 2001 From: ElGovanni Date: Mon, 11 Nov 2024 17:00:42 +0100 Subject: [PATCH] Correct documentation for FillMax in resizing-images.md --- docs/image-manipulations/resizing-images.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/image-manipulations/resizing-images.md b/docs/image-manipulations/resizing-images.md index 544ca12..daa1f97 100644 --- a/docs/image-manipulations/resizing-images.md +++ b/docs/image-manipulations/resizing-images.md @@ -62,7 +62,7 @@ Stretches the image to fit the constraining dimensions exactly. The resulting im Resizes the image to fill the width and height boundaries and crops any excess image data. The resulting image will match the width and height constraints without distorting the image. -#### `Manipulations::FillMax` +#### `Fit::FillMax` Resizes the image to fit within the width and height boundaries without cropping but upscaling the image if it’s smaller. The finished image will have remaining space on either width or height (except if the aspect ratio of the new image is the same as the old image). The remaining space will be filled with the background color. The resulting image will match the constraining dimensions.