From ae7893285279bb6415f757cdf8ca2bda82e61ec2 Mon Sep 17 00:00:00 2001 From: kenjis Date: Fri, 29 Jul 2022 18:54:10 +0900 Subject: [PATCH] docs: update docs on imagick extentsion --- system/Images/Handlers/ImageMagickHandler.php | 6 ------ user_guide_src/source/libraries/images.rst | 4 +--- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/system/Images/Handlers/ImageMagickHandler.php b/system/Images/Handlers/ImageMagickHandler.php index 5e0bafe00841..a1482db7d49a 100644 --- a/system/Images/Handlers/ImageMagickHandler.php +++ b/system/Images/Handlers/ImageMagickHandler.php @@ -19,12 +19,6 @@ /** * Class ImageMagickHandler * - * To make this library as compatible as possible with the broadest - * number of installations, we do not use the Imagick extension, - * but simply use the command line version. - * - * hmm - the width & height accessors at the end use the imagick extension. - * * FIXME - This needs conversion & unit testing, to use the imagick extension */ class ImageMagickHandler extends BaseHandler diff --git a/user_guide_src/source/libraries/images.rst b/user_guide_src/source/libraries/images.rst index 1e4f85692467..8c4ed8c7b711 100644 --- a/user_guide_src/source/libraries/images.rst +++ b/user_guide_src/source/libraries/images.rst @@ -39,9 +39,7 @@ The available Handlers are as follows: If using the ImageMagick library, you must set the path to the library on your server in **app/Config/Images.php**. -.. note:: The ImageMagick handler does NOT require the imagick extension to be - loaded on the server. As long as your script can access the library - and can run ``exec()`` on the server, it should work. +.. note:: The ImageMagick handler requires the imagick extension. ******************* Processing an Image