You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use conversion from PDF to image. This fails on Forge / FrankenPHP because it seems like FrankenPHP doesn't have access to Imagick without a custom build (see dunglas/frankenphp#623).
The conversion fails at src/Conversions/ImageGenerators/Pdf.php:
public function requirementsAreInstalled(): bool
{
if (! class_exists(Imagick::class)) {
return false;
}
// ...
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Just for Google to find this:
I use conversion from PDF to image. This fails on Forge / FrankenPHP because it seems like FrankenPHP doesn't have access to Imagick without a custom build (see dunglas/frankenphp#623).
The conversion fails at
src/Conversions/ImageGenerators/Pdf.php
:I had to go back to Roadrunner.
Beta Was this translation helpful? Give feedback.
All reactions