-
Notifications
You must be signed in to change notification settings - Fork 118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add hint about libjpeg, libwebp, libavif, ... #818
Conversation
bundles/media/imagine-adapter.rst
Outdated
.. note:: | ||
|
||
You may require to install on your operation system ``libjpeg-dev``, ``libpng-dev``, ``libwebp-dev``, ``libavif-dev``, ... | ||
or other libraries to support the range of image mime types you want to support. Linux distributions like | ||
Alpine may are not shipping them in the base image. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Prokyonn may you have better suggestions here to make this kind of things easer to understand.
apt-get install libmagickwand-dev inkscape | ||
pecl install imagick | ||
apt-get install libmagickwand-dev | ||
apt-get install php8.3-imagick |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pecl is mostly not used for linux distributions.
@@ -71,7 +77,6 @@ To install it use following commands: | |||
.. code-block:: bash | |||
|
|||
apt-get install libvips-dev | |||
pecl install vips |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VIPS uses FFI and not longer requires a PHP extension: https://github.com/libvips/php-vips-ext
Co-authored-by: Prokyonn <[email protected]>
What's in this PR?
Add hint about libjpeg, libwebp, libavif, ....
Why?
Images like alpine are may not shipping this libs.