Skip to content

Commit 04887ba

Browse files
committed
feat: add support for webp in imagick
1 parent bca5216 commit 04887ba

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,7 @@ RUN \
202202
libjxl-dev \
203203
libavif \
204204
libheif \
205+
libwebp \
205206
imagemagick-heic \
206207
zlib-dev \
207208
libpng-dev \

tests.yaml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ commandTests:
1717
command: "docker"
1818
args: ["--version"]
1919
expectedOutput: ["Docker version 28.*"]
20-
- name: 'PHP info'
20+
- name: 'PHP modules'
2121
command: "php"
2222
args: ["-m"]
2323
expectedOutput:
@@ -71,6 +71,11 @@ commandTests:
7171
- yaml
7272
- zlib
7373
- zstd
74+
- name: 'ImageMagick supported formats'
75+
command: "php"
76+
args: ["-i"]
77+
expectedOutput:
78+
- "ImageMagick supported formats .*WEBP.*"
7479
- name: 'PHP intl'
7580
command: "php"
7681
args: ["-r", 'print(\Normalizer::FORM_D);']

0 commit comments

Comments
 (0)