Why might image quality be decreased in prod? #2255
Answered
by
george-gca
eolesinski
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
george-gca
Mar 6, 2024
Replies: 1 comment 2 replies
-
If you used figure.liquid to display the image, it internally uses imagemagick to create different resolutions of the same image. This is done to avoid serving a high resolution version of the image when it is not needed, so the page loads faster. For more information check this guide about responsive images. You can disable this behavior in _config.yml, although this is not usually recommended. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
eolesinski
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you used figure.liquid to display the image, it internally uses imagemagick to create different resolutions of the same image. This is done to avoid serving a high resolution version of the image when it is not needed, so the page loads faster. For more information check this guide about responsive images.
You can disable this behavior in _config.yml, although this is not usually recommended.