Skip to content

Commit

Permalink
fix: attempt fix for animation decoding (#929)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio authored Dec 13, 2024
1 parent c358f21 commit 8d871d5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ RUN apk update && \
excimer \
exif \
gd \
imagick \
intl \
opcache \
pdo_pgsql \
Expand Down
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"license": "MPL-2.0",
"require": {
"php": "^8.2",
"ext-imagick": "*",
"andreiio/blade-remix-icon": "^3.2",
"archtechx/laravel-seo": "^0.10",
"blade-ui-kit/blade-icons": "^1.7",
Expand Down
5 changes: 3 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions config/image.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
|
*/

'driver' => Intervention\Image\Drivers\Gd\Driver::class,
'driver' => Intervention\Image\Drivers\Imagick\Driver::class,

/*
|--------------------------------------------------------------------------
Expand All @@ -38,7 +38,7 @@

'options' => [
'autoOrientation' => true,
'decodeAnimation' => false,
'decodeAnimation' => true,
'blendingColor' => 'ffffff',
],
];

0 comments on commit 8d871d5

Please sign in to comment.