This is a Heroku buildpack for vendoring the ImageMagick with WebP and HEIF support binaries into your project.
This one works with Heroku stack heroku-20
.
Add this buildpack to your app:
heroku buildpacks:add https://github.com/drnic/heroku-buildpack-imagemagick-webp -i 1 -a <app name>
And add it into your app.json
:
"buildpacks": [
{
"url": "https://github.com/drnic/heroku-buildpack-imagemagick-webp"
},
{
"url": "heroku/ruby"
}
],
When you use this buildpack it unpacks a pre-built build/imagemagick.tar.gz
file into your Heroku application's /./vendor
folder and sets up the relevant environment variables.
If you were to run a Heroku bash
session you can investigate the dependencies:
$ heroku run -a <appname> bash
~ $ convert -version
Version: ImageMagick 7.1.0-22 Q16-HDRI x86_64 2022-01-29 https://imagemagick.org
Copyright: (C) 1999-2021 ImageMagick Studio LLC
License: https://imagemagick.org/script/license.php
Features: Cipher DPC HDRI OpenMP(4.5)
Delegates (built-in): bzlib djvu fontconfig freetype heic jbig jng jpeg lcms lqr lzma openexr png webp x xml zip zlib
Compiler: gcc (9.3)
~ $ dwebp -version
1.2.2
~ $ heif-info -h
heif-info libheif version: 1.12.0
To update the dependencies you have the following steps:
-
Update the
Dockerfile
-
Re-build the
build/imagemagick.tar.gz
file./build.sh
-
Git the changes, including the tar.gz file, and push to your fork
-
Purge your Heroku application's cache
heroku builds:cache:purge
-
Redeploy your application via the Heroku dashboard, or push a new commit.