0

Since certain functions of GD is not available on heroku, i have tried imagemagick on heroku for php web apps.

I have changed builpacks to here https://github.com/zapumal/heroku-buildpack-php but it returns php fatal error

 PHP Fatal error:  Call to undefined function Imagick()

Any solution ?

zapumal
  • 159
  • 1
  • 2
  • 12

1 Answers1

0

Imagick is not a PHP package. Rather, it relies on ImageMagick being installed. You'll need to install it first.

Edit:

It looks like this post has more details if you've already installed ImageMagick and it's not working. See the first answer.

Community
  • 1
  • 1
David C
  • 7,204
  • 5
  • 46
  • 65