diff --git a/system/Language/en/Images.php b/system/Language/en/Images.php index cdfe9ccbb181..2af9e0a2d1d3 100644 --- a/system/Language/en/Images.php +++ b/system/Language/en/Images.php @@ -21,7 +21,7 @@ 'pngNotSupported' => 'PNG images are not supported.', 'webpNotSupported' => 'WEBP images are not supported.', 'fileNotSupported' => 'The supplied file is not a supported image type.', - 'unsupportedImageCreate' => 'Your server does not support the GD function required to process this type of image.', + 'unsupportedImageCreate' => 'Your server does not support the required functionality to process this type of image.', 'jpgOrPngRequired' => 'The image resize protocol specified in your preferences only works with JPEG or PNG image types.', 'rotateUnsupported' => 'Image rotation does not appear to be supported by your server.', 'imageProcessFailed' => 'Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.', diff --git a/user_guide_src/source/changelogs/v4.7.1.rst b/user_guide_src/source/changelogs/v4.7.1.rst index 2761dcb50e19..18c24b47ffb0 100644 --- a/user_guide_src/source/changelogs/v4.7.1.rst +++ b/user_guide_src/source/changelogs/v4.7.1.rst @@ -18,6 +18,8 @@ BREAKING Message Changes *************** +- Updated ``Images.unsupportedImageCreate``. + ******* Changes ******* diff --git a/user_guide_src/source/libraries/images.rst b/user_guide_src/source/libraries/images.rst index b2b6b0238942..8f039c9561ec 100644 --- a/user_guide_src/source/libraries/images.rst +++ b/user_guide_src/source/libraries/images.rst @@ -38,6 +38,10 @@ The available Handlers are as follows: .. note:: The ImageMagick handler requires the imagick extension. +.. note:: + On Windows, the ImageMagick handler requires **absolute file paths** when + loading images (for example, using ``WRITEPATH`` or ``FCPATH``). + ******************* Processing an Image *******************