I am developping an app using Heroku. I will need to manipulate images but unfortunately jpeg
is not supported by default. I spoke with support and here is their answer:
"We unfortunately don't support jpeg by default. But the good
news is that we open sourced our PHP buildpack, so hopefully the
community will be able to bring that in.
In case you're interested, the buildpack is here:
https://github.com/heroku/heroku-buildpack-php"
I know I need to add --with-jpeg
just before the --with-gd
in the ./configure
of PHP
But the buildpack only gives the ability to update the php.ini and compile files and none of them contains the magic line to update (./configure...) ...
Is there is a way to add jpeg
support through the two mentioned files ?