Skip to content

Commit e15078c

Browse files
feat: rewrite ImageMagickHandler to rely solely on the PHP imagick extension (#9526)
* feat: rewrite ImageMagickHandler to rely solely on the PHP imagick extension * apply the code suggestions from the review Co-authored-by: John Paul E. Balandan, CPA <[email protected]> --------- Co-authored-by: John Paul E. Balandan, CPA <[email protected]>
1 parent 489d0be commit e15078c

File tree

14 files changed

+325
-321
lines changed

14 files changed

+325
-321
lines changed

app/Config/Images.php

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ class Images extends BaseConfig
1616
/**
1717
* The path to the image library.
1818
* Required for ImageMagick, GraphicsMagick, or NetPBM.
19+
*
20+
* @deprecated 4.7.0 No longer used.
1921
*/
2022
public string $libraryPath = '/usr/local/bin/convert';
2123

system/Images/Exceptions/ImageException.php

+2
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ public static function forSaveFailed()
100100
/**
101101
* Thrown when the image library path is invalid.
102102
*
103+
* @deprecated 4.7.0 No longer used.
104+
*
103105
* @return static
104106
*/
105107
public static function forInvalidImageLibraryPath(?string $path = null)

0 commit comments

Comments
 (0)