Image Thumbnails
-
jmglastetter
- Regular
- Posts: 26
- Joined: Fri Dec 14, 2018 6:27 am
Image Thumbnails
Did something happen with the image thumbnails recently? They are quite blurry now on high resolution devices.
Re: Image Thumbnails
New ones?
In 2.6. there were a couple changes related to thumbnails:
1. Jpeg thumbnails got new creation settings (setting their quality)
2. WebP and AVIF images are supported now, and also have new setting for their creation
But I'd guess what hits you are the responsive images, that the thumbnails picked from the srcset do not work well for the resolution / the size of the images in your theme. You can change the breakpoint, it's controlled by code in the config.inc.php of your template, e.g. for 2k11:
Try lowering the numbers, but it depends on the situation. Would be helpful to have a site to look at to diagnose this :)
In 2.6. there were a couple changes related to thumbnails:
1. Jpeg thumbnails got new creation settings (setting their quality)
2. WebP and AVIF images are supported now, and also have new setting for their creation
But I'd guess what hits you are the responsive images, that the thumbnails picked from the srcset do not work well for the resolution / the size of the images in your theme. You can change the breakpoint, it's controlled by code in the config.inc.php of your template, e.g. for 2k11:
Code: Select all
$template_loaded_config['breakpoints'] = [1600, 1200, 600];