How does it work vs. srcset?
-
Using srcset involves the creation of multiple resized images (such as WordPress thumbnails), then using media query to load image according to device.
Adaptive Images is theorized to read screen size of user, then serve image accordingly. So how does this plugin implement that?
Some background information:
- https://www.ads-software.com/support/topic/plugin-did-not-work-it-did-not-cache-any-image/ indicates that the plugin’s resizing and compression runs from origin server.
- https://www.ads-software.com/support/topic/adaptive-images-dont-appear-to-be-rendering/ indicates that the detection of user screen size happens from origin server.
- https://www.php.net/manual/en/book.image.php requirement indicates origin server uses get_image_size to get image size from server-side PHP execution rather than frontend JS execution. So, request in order of user -> origin web server -> php -> html -> user. This order is why plugin “doesn’t work” on CDN, because that would be user -> cdn -> html -> user, but html doesn’t call to origin web server to run php.
- https://www.ads-software.com/support/topic/taking-care-of-all-the-thumbnail-generation/ indicates that images are “only created if and when they are requested by devices with relevant screen sizes and based on the breakpoints set in its settings”. So, images only resized if loaded by user and then it creates images at the size of given breakpoint and stores that in the cache. So, images might end up taking time on new requests.
So, if you are using breakpoints, why not
- When image is uploaded, generate all breakpoint image variations.
- Change all HTML to use srcset, which will also serve “as small, but not too small, images based on each device’s dimensions” with its media query.
Plugin doesn’t work with CDN because plugin doesn’t change HTML to use breakpoint images. So, on first page load, CDN -> origin web server -> html (requests original image) -> cdn (stores original image) -> user. Then, user -> cdn -> user (always receives cdn-original-image).
Or alternatively, CDN receives an “adaptive image” once, then never changes it to avoid origin server.
So how does the plugin work and why not use srcset instead?
- The topic ‘How does it work vs. srcset?’ is closed to new replies.