We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently you have to pass the driver by its full classname or by an object to the ImageManager::class.
ImageManager::class
$manager = new ImageManager(new Driver()); $manager = new ImageManager(Driver::class);
In version 2, a string (either gd or imagick) had to be passed to the ImageManager. This could be made possible again using the respective driver ID.
gd
imagick
$manager = new ImageManager('gd');
When migrating from version 2, there might still be old configuration values like gd or imagick which then result in errors. See #1413
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the feature you'd like
Currently you have to pass the driver by its full classname or by an object to the
ImageManager::class
.In version 2, a string (either
gd
orimagick
) had to be passed to the ImageManager. This could be made possible again using the respective driver ID.Is your feature request related to a problem? Please describe.
When migrating from version 2, there might still be old configuration values like
gd
orimagick
which then result in errors. See #1413The text was updated successfully, but these errors were encountered: