Replies: 1 comment
-
A |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Description
Both GD and Imagick seem to yield quite blurred images when resizing.
The only solutions to this I have found is to either reach for Imager/Imager-X to do a straight-swap adding the
sharpen: true
parameter to my transforms; or take the 1.5-2x approach and force the browser to downscale images which improves their sharpness a little at the expense of filesize/performance.This is frustrating because you then have to reconfigure Imager in order to get back to the baseline goodness that Craft offers with image transforms out of the box, namely tight integration with your asset volumes to store the transforms in the cloud (I'm using an Azure storage container).
I'd dearly love for Craft to expose a
sharpen
option for image transforms so that we don't have to use plugins or workarounds for the basics. This could either be provided alongside the other existing parameters (width, height, mode, quality); or a config option (likedefaultImageQuality
); or a config object we can drop into app/general.php that sets up some sensible defaults?Default Craft transform using Imagick 3.4.4 (ImageMagick 6.9.10-23)
Imager default transform, slightly sharper:
Imager with
sharpen: true
effect applied:Beta Was this translation helpful? Give feedback.
All reactions