SlideShare a Scribd company logo
IMAGECON 2017
Delivering Responsive Images
Jason Grigsby
Responsive
images have
landed
Delivering Responsive Images
https://www.flickr.com/photos/gwendalcentrifugue/7395256948
Delivering Responsive Images
<picture>
<!-- 16:9 crop -->
<source
type="image/webp"
media="(min-width: 36em)"
srcset="quilt_2/detail/large.webp 1920w,
quilt_2/detail/medium.webp 960w,
quilt_2/detail/small.webp 480w" />
<source
media="(min-width: 36em)"
srcset="quilt_2/detail/large.jpg 1920w,
quilt_2/detail/medium.jpg 960w,
quilt_2/detail/small.jpg 480w" />
srcset="quilt_2/square/large.webp 822w,
quilt_2/square/medium.webp 640w,
quilt_2/square/small.webp 320w" />
<source
srcset="quilt_2/square/large.jpg 822w,
quilt_2/square/medium.jpg 640w,
quilt_2/square/small.jpg 320w" />
<img
src="quilt_2/detail/medium.jpg"
alt="Detail of the above quilt, highlighting the
embroidery and exotic stitchwork." />
</picture>
”This is way too complex and heavy markup language.
Can you imagine yourselves doing that in 300 images in
a web site? This will be a nightmare to manage.”
”There are so many things wrong with these new
responsive image systems.”
“
background-image:
-webkit-linear-gradient(
45deg, rgba(255, 255, 255, .15) 25%,
transparent 25%, transparent 50%,
rgba(255, 255, 255, .15) 50%,
rgba(255, 255, 255, .15) 75%,
transparent 75%,
transparent);
background-image:
-o-linear-gradient(
45deg,
rgba(255, 255, 255, .15) 25%,
transparent 75%,
transparent);
background-image:
linear-gradient(45deg,
rgba(255, 255, 255, .15) 25%,
transparent 25%, transparent 50%,
rgba(255, 255, 255, .15) 50%,
rgba(255, 255, 255, .15) 75%,
transparent 75%,
transparent);
And that’s why no one uses gradients…
Images have always been difficult.
216Web Safe Colors
http://moodlightinghire.com/wp-content/uploads/2013/06/RGB_color_chart_by_ervis.jpg
1996
258
pages
1997
447
pages
1996
235
pages
1997
238
pages
1997
235
pages
PNG compression
1,498 bytes 1,980 bytes 12,850 bytes
https://www.flickr.com/photos/jannem/3312115991
UseCases
https://www.flickr.com/photos/cgb_bbear/3082932860
https://www.flickr.com/photos/whitehouse/8491445521
Resolution Switching
Includes high-density (retina) images.
Art direction
http://www.flickr.com/photos/barackobamadotcom/5795228030/
http://www.flickr.com/photos/barackobamadotcom/5795228030/
Art direction
http://www.flickr.com/photos/barackobamadotcom/5795228030/
Art direction
http://www.flickr.com/photos/barackobamadotcom/5795228030/
Art direction
http://www.flickr.com/photos/barackobamadotcom/5795228030/
Art direction
Not simply cropping
Art direction: Images with text
Art direction: Images with text
Art direction: Images with text
https://www.flickr.com/photos/lonelycoo/4393663498
<img>
is always required
<img>
Icon made by Daniel Bruce from www.flaticon.com is licensed under CC BY 3.0
<picture> <source>
srcset media
sizes type
<picture>
<source media="(min-width: 650px)"
srcset="kitten-large.png">
<source media="(min-width: 465px)"
srcset="kitten-medium.png">
<img src="kitten-small.png"
alt="a cute kitten">
</picture>
All rules are applied to <img> element
Original Chrome Team Example: http://googlechrome.github.io/samples/picture-element/
<img>
do you need anything else?
Fixed width, single density
<img> is all you need.
Delivering Responsive Images
Delivering Responsive Images
Delivering Responsive Images
Small difference in file
size or using SVG?
<img> is all you need.
High density
displays?
srcset
display density
comma-separated list
<img src="cat.jpg" alt="cat"
srcset="cat.jpg, cat-2X.jpg 2x">
Easy so far, right?
Delivering Responsive Images
1849 × 749 – 256K
2x = 3698 × 1498 – 508K
We need more source files.
width of the image sources
Browser picks best source
<img src="cat.jpg" alt="cat"
srcset="cat-160.jpg 160w,
cat-320.jpg 320w,
cat-640.jpg 640w,
cat-1280.jpg 1280w">
Browser picks
best source
HOW?
https://www.flickr.com/
photos/ores2k/394359583
Image requested
HTML requested
CSS and JS requested
HTML parsing starts
Image requested
Image requested
Image requested
CSS evaluation beginning
CSS evaluation beginning
Images are downloaded before size is known
The only thing the lookahead pre-parser knows is the size of the viewport.
<img src="cat.jpg" alt="cat"
srcset="cat-160.jpg 160w,
cat-320.jpg 320w,
cat-640.jpg 640w,
cat-1280.jpg 1280w">
Images are nearly same
size as viewport
1540px
254px
Viewport
Tells Us
Little
Tug of war between
responsive images and the
lookahead pre-parser.
https://www.flickr.com/photos/davechiu/24165369 https://www.flickr.com/photos/ostrosky/4149725733
https://www.flickr.com/photos/davechiu/24165369 https://www.flickr.com/photos/ostrosky/4149725733
Lookahead
pre-parser
Know everything in advance.
Start downloading immediately.
Responsive
images
Wait until last minute.
Know size of image after CSS / JS.
The pre-parser is why we can’t solve responsive
images with CSS, JS or a magical new image format.
https://www.flickr.com/photos/hamur0w0/6984884135
Lookahead Pre-parser Key to a FasterWeb
20% 19%
http://andydavies.me/blog/2013/10/22/how-the-browser-pre-loader-makes-pages-load-faster/
~43% of image fetches are initiated by the
speculative HTML scanner, which account for
~50% of transferred bytes.
—Ilya Grigorik
“
http://bigqueri.es/t/who-initiates-image-downloads/568
sizes
https://www.flickr.com/photos/ashleyrosex/2861690380
<img src="cat.jpg" alt="cat"
srcset="cat-160.jpg 160w,
cat-320.jpg 320w,
cat-640.jpg 640w,
cat-1280.jpg 1280w"
sizes=“max-width(480px) 100vw,
max-width(900px) 33vw,
171px”>
sizes="(max-width: 480px) 100vw,
(max-width: 900px) 33vw,
254px"
sizesisrequired
wheneversrcsetuses
widthdescriptors
media condition (subset of media queries)
length
viewport width unit
if there is no media condition,
then it is the default length
length can be
absolute, relative
or even calc()
sizes="(max-width: 480px) 100vw,
(max-width: 900px) 33vw,
254px"
sizes="
(max-width: 480px) 100vw,
(max-width: 900px) 33vw,
254px"
sizes="
(max-width: 480px) 100vw,
(max-width: 900px) 33vw,
254px"
sizes="
(max-width: 480px) 100vw,
(max-width: 900px) 33vw,
254px"
What about separation of
content from style?
Sizes is a necessary compromise:

responsive images and speculative downloading
srcset and sizes
let browsers be smarthttps://www.flickr.com/photos/alicejamieson/3164148439
<picture?>
Art Direction
http://www.gratisography.com/
<picture>
<source media="(min-width: 900px)"
srcset="cat-vertical.jpg">
<source media="(min-width: 750px)"
srcset="cat-horizontal.jpg">
<img src="cat.jpg" alt="cat">
</picture>
media query
full srcset
multiple
<source>s
<img>required
Shopify using <picture> for art direction
Shopify using <picture> for art direction
<picture>
<source srcset="homepage-person@desktop.png,
homepage-person@desktop-2x.png 2x"
media="(min-width: 990px)">
<source srcset="homepage-person@tablet.png,
homepage-person@tablet-2x.png 2x"
media="(min-width: 750px)">
<img srcset="homepage-person@mobile.png,
homepage-person@mobile-2x.png 2x"
alt="Shopify Merchant, Corrine Anestopoulos">
</picture>
Simplified markup
another use for <picture>
https://www.flickr.com/photos/delete08/4869608487
declare different types of images
unless art direction, you
don’t need media attribute
<picture>
<source type="image/svg+xml" srcset="logo.xml">
<source type="image/webp" srcset="logo.webp">
<img src="logo.png" alt="ACME Corp">
</picture>
New image formats present new possibilities
JPEG 2000 handles alpha channel images well
http://www.useragentman.com/blog/2015/01/14/using-webp-jpeg2000-jpegxr-apng-now-with-picturefill-and-modernizr/
JPEG 2000 19.2K
JPEG-XR 95.7K
PNG 325.7K
Web-P 56K
Alpha Channel
Dice Image
http://www.useragentman.com/blog/2015/01/14/using-webp-jpeg2000-jpegxr-apng-now-with-picturefill-and-modernizr/
http://www.gratisography.com/
image breakpoints
http://www.gratisography.com/
Art direction may dictate image breakpoints
https://www.flickr.com/photos/photosdavidgabrielfischer/15706338457
Image breakpoints for resolution switching.
For responsive design breakpoints, resize the
browser until the page looks bad then…
BOOM!
you need a breakpoint.
2000 x 3010
761K
200 x 301
15K
How many image breakpoints?
2000 x 3010
761K
200 x 301
15K
Scaled down images don’t look bad.
2000 x 3010
250K
400 x 602
Actual size in page
800 x 1204
73K
2000 x 3010
250K
400 x 602
Actual size in page
800 x 1204
73K
600 x 903
42K
400 x 602
Actual size in page
800 x 1204
73K
600 x 903
42K
500 x 753
31K
450 x 678
27K
400 x 602
Actual size in page
400 x 602
Actual size in page
Is the only intrinsic information we have about image size.
In the responsive layouts I’ve worked on, content image sizes and their
breakpoints were chosen for completely different reasons than the
design (CSS) breakpoints: the former for sensible jumps in file size to
match screen dimension and/or density, and the latter for how content
modules are visibly designed at given viewport dimensions.
—Scott Jehl, Filament Group
http://lists.w3.org/Archives/Public/public-whatwg-archive/2012May/0613.html
“
What is a sensible jump in file size?
Images compress differently
Both images are 960x660 pixels
151K, JPEG 13K PNG
Responsive Images Performance Budget
Source image:
500x333
58K
What is the cost of flexible images?
Source image:
500x333
58K
What is the cost of flexible images?
Size in page:
300x200
24K
Making this
image
flexible
costs 34K.
What if we set a performance budget
of 20K per image for flexible images?
Width Height File Size
320 213 25K
453 302 44K
579 386 65K
687 458 85K
786 524 104K
885 590 124K
975 650 142K
990 660 151K
8 image breakpoints
https://www.flickr.com/photos/lyza/6733380533
Width Height File Size
320 213 9K
731 487 29K
990 660 40K
3 image breakpoints
https://www.flickr.com/photos/lyza/6210160407
7 image breakpoints
Width Height File Size
320 213 24K
471 314 43K
612 408 64K
728 485 84K
840 560 103K
944 629 122K
990 660 131K
https://www.flickr.com/photos/lyza/6167714218
Width Height File Size
990 660 13K
1 image breakpoint
Delivering Responsive Images
Pick representative
images and test how
many breakpoints
you’ll need.
Image breakpoints are not a science yet.
https://www.flickr.com/photos/ecstaticist/5465673165
Humans
shouldn’t
be doing
this work.
https://www.flickr.com/photos/jdhancock/7801182534/
client hints
displaydensity
width of image in page
may not be useful
GET cat.jpg
Accept: image/webp,image/*,*/*;q=0.8
DPR: 2
Viewport-Width: 1024
Width: 508
<img src="cat.jpg" alt="cat"
sizes="(max-width: 480px) 100vw,
(max-width: 900px) 33vw, 254px">
srcset="cat-160.jpg 160w, cat-320.jpg 320w,
cat-640.jpg 640w, cat-1280.jpg 1280w"
sizes="(max-width: 480px) 100vw,
(max-width: 900px) 33vw, 254px">
<img src="cat.jpg" alt="cat"
necessary to calculate
image width
image formats browser understands
GET cat.jpg
Accept: image/webp,image/*,*/*;q=0.8
DPR: 2
Viewport-Width: 1024
Width: 508
<picture>
<!-- serve WebP to Chrome and Opera -->
<source
media="(min-width: 50em)"
sizes="50vw"
srcset="/image/thing-200.webp 200w, /image/thing-400.webp 400w,
/image/thing-800.webp 800w, /image/thing-1200.webp 1200w,
/image/thing-1600.webp 1600w, /image/thing-2000.webp 2000w"
type="image/webp">
<source
sizes="(min-width: 30em) 100vw"
srcset="/image/thing-crop-200.webp 200w, /image/thing-crop-400.webp 400w,
/image/thing-crop-800.webp 800w, /image/thing-crop-1200.webp 1200w,
/image/thing-crop-1600.webp 1600w, /image/thing-crop-2000.webp 2000w"
type="image/webp">
<!-- serve JPEGXR to Edge -->
<source
/image/thing-crop-1600.jpgxr 1600w, /image/thing-crop-2000.jpgxr 2000w"
type="image/vnd.ms-photo">
<!-- serve JPEG to others -->
<source
media="(min-width: 50em)"
sizes="50vw"
srcset="/image/thing-200.jpg 200w, /image/thing-400.jpg 400w,
/image/thing-800.jpg 800w, /image/thing-1200.jpg 1200w,
/image/thing-1600.jpg 1600w, /image/thing-2000.jpg 2000w">
<source
sizes="(min-width: 30em) 100vw"
srcset="/image/thing-crop-200.jpg 200w, /image/thing-crop-400.jpg 400w,
/image/thing-crop-800.jpg 800w, /image/thing-crop-1200.jpg 1200w,
/image/thing-crop-1600.jpg 1600w, /image/thing-crop-2000.jpg 2000w">
<!-- fallback for browsers that don't support picture -->
<img src="/image/thing.jpg" width="50%">
</picture>
<picture>
<source media="(min-width: 50em)"
sizes="50vw"
srcset="/image/thing">
<img sizes="100vw" src="/image/thing-crop">
</picture>
<meta http-equiv="Accept-CH"
content="DPR, Viewport-Width, Width">
only declare the hints you need
Delivering Responsive Images
Client hints
conundrum
https://www.flickr.com/photos/lendingmemo/11747440176
Questions to ask about images
Where are the source files and what is the process for publishing?
Is there a big difference between smallest and largest image size?
Resolution switching or art direction?
Can we use SVG?
Are there representative images we can use to find sensible jumps in
file sizes for our image breakpoints?
Do we want to support multiple image formats?
Image Description Format Size Markup Notes
Property logos
PNG8
(future SVG)
Regular,
Retina
<img>
Little variance between the wide and
small screen image sizes.
Partner logos
PNG8
(future SVG)
Regular,
Retina
<img>
Little variance between the wide and
small screen image sizes.
Iconography SVG — <img> —
Brand logos
PNG8
(future SVG)
regular,
Retina
<img>
Assumes little variance between the
wide and small screen image sizes.
Property photography
JPG 

(conditionalWebP)
Dynamically resized and
compressed
srcset and sizes Templates specify breakpoints.
Promo images w/ text 

(art direction)
Whichever is appropriate As many sizes as needed. <picture>
Content producer defines images
and breakpoints in CMS.
Example of images audit for a large site
Big Hope: Automation
https://www.flickr.com/photos/clement127/15631803492
http://scottjehl.github.io/picturefill/
Picturefill is
the polyfill.
https://www.drupal.org/project/picture
Drupal
Picture
Module
https://wordpress.org/plugins/ricg-responsive-images/
Wordpress
Responsive
Images
Plugin
Image
resizing
services
http://bit.ly/image-services
Delivering Responsive Images
https://www.flickr.com/photos/mariachily/5250487136
Responsive images
can seem daunting…
Remember, you’re
not alone…
https://www.flickr.com/photos/max-design/3751402935
Delivering Responsive Images
We will build tools to
make the climb easier…
We merely
need to
take the
first steps.
https://www.flickr.com/photos/akras/1477140536
https://flickr.com/photos/
ekosystem/4334671818
http://www.gratisography.com/
http://www.gratisography.com/
Special thanks to Simon
Pieters, Mat Marquis,
Eric Portis,YoavWeiss,
and the rest of the RICG.
Shout out to all of the
amazing photographers
who share their work
under creative
commons.You rule!

More Related Content

PPTX
Measuring Image Performance
PDF
Imagecon 2019 - Aaron Gustafson
PDF
High Performance Images: Beautiful Shouldn't Mean Slow
PDF
Basic HTML CSS Slides
PDF
High Performance Images: Beautiful Shouldn't Mean Slow (Velocity EU 2015)
PPTX
Back to the [Completable] Future
PDF
Jozef Ve Providing Scalability for Pirates, Lizards and Zombies at #DOXLON
PDF
Scott Jehl - Delivering Responsibly - beyond tellerrand Düsseldorf 2015
Measuring Image Performance
Imagecon 2019 - Aaron Gustafson
High Performance Images: Beautiful Shouldn't Mean Slow
Basic HTML CSS Slides
High Performance Images: Beautiful Shouldn't Mean Slow (Velocity EU 2015)
Back to the [Completable] Future
Jozef Ve Providing Scalability for Pirates, Lizards and Zombies at #DOXLON
Scott Jehl - Delivering Responsibly - beyond tellerrand Düsseldorf 2015

What's hot (20)

PPTX
Site optimization
PPT
jQuery For Beginners - jQuery Conference 2009
PPTX
Ann hartsock non-technical
PDF
Yes, browsers can do that! Hybrid and future web meetup at Jayway
PDF
Practical Responsive Images : from Breaking Borders
PPTX
Hartsock technical
PDF
#2 Html [know-how]
PDF
Performance as User Experience [AEADC 2018]
PDF
Getting Started with Angular - Stormpath Webinar, January 2017
PDF
WordPress-Templates mit Twig erstellen - PHPUGFFM
PDF
The things browsers can do! SAE Alumni Convention 2014
DOCX
Aztex indian's greatest hit's.http
PDF
スマートフォンサイトの作成術 - 大川洋一
PDF
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
DOCX
A real cool ass book of light.pt.1.blu.http
PDF
What does the browser pre-loader do?
PDF
Responsive Responsive Design
DOC
A real cool ass book of light.http
PDF
Jquery tutorial
PPTX
Using The New Flash Stage3D Web Technology To Build Your Own Next 3D Browser ...
Site optimization
jQuery For Beginners - jQuery Conference 2009
Ann hartsock non-technical
Yes, browsers can do that! Hybrid and future web meetup at Jayway
Practical Responsive Images : from Breaking Borders
Hartsock technical
#2 Html [know-how]
Performance as User Experience [AEADC 2018]
Getting Started with Angular - Stormpath Webinar, January 2017
WordPress-Templates mit Twig erstellen - PHPUGFFM
The things browsers can do! SAE Alumni Convention 2014
Aztex indian's greatest hit's.http
スマートフォンサイトの作成術 - 大川洋一
Are Today’s Good Practices… Tomorrow’s Performance Anti-Patterns?
A real cool ass book of light.pt.1.blu.http
What does the browser pre-loader do?
Responsive Responsive Design
A real cool ass book of light.http
Jquery tutorial
Using The New Flash Stage3D Web Technology To Build Your Own Next 3D Browser ...
Ad

Similar to Delivering Responsive Images (20)

PDF
Responsive images are here. Now what?
PDF
[cssdevconf] Adaptive Images in RWD
PDF
[html5tx] Adaptive Images in Responsive Web Design
PDF
[refreshaustin] Adaptive Images in Responsive Web Design
PDF
[convergese] Adaptive Images in Responsive Web Design
PDF
2022.04 - CSS Day IT - Images Optimisation 4.0
PDF
[rwdsummit2012] Adaptive Images in Responsive Web Design
PDF
Deliver perfect images at any size
PDF
Deliver Perfect Images At Any Size
PPTX
Iasi code camp 12 october 2013 responsive images in the wild-vlad zelinschi
PDF
Responsive images, an html 5.1 standard
PDF
Practical Responsive Images - from Second Wednesday
PDF
Responsive Web Design: Clever Tips and Techniques
PDF
Practical Responsive Images : Digital Henley : May 2015
PDF
Ben Seymour "Practical Responsive Images"
PDF
Next Steps in Responsive Design
PDF
Responsive websites. Toolbox
PPTX
There Is No Mobile: An Introduction To Responsive Web Design
PPT
Responsive Web Design
PDF
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
Responsive images are here. Now what?
[cssdevconf] Adaptive Images in RWD
[html5tx] Adaptive Images in Responsive Web Design
[refreshaustin] Adaptive Images in Responsive Web Design
[convergese] Adaptive Images in Responsive Web Design
2022.04 - CSS Day IT - Images Optimisation 4.0
[rwdsummit2012] Adaptive Images in Responsive Web Design
Deliver perfect images at any size
Deliver Perfect Images At Any Size
Iasi code camp 12 october 2013 responsive images in the wild-vlad zelinschi
Responsive images, an html 5.1 standard
Practical Responsive Images - from Second Wednesday
Responsive Web Design: Clever Tips and Techniques
Practical Responsive Images : Digital Henley : May 2015
Ben Seymour "Practical Responsive Images"
Next Steps in Responsive Design
Responsive websites. Toolbox
There Is No Mobile: An Introduction To Responsive Web Design
Responsive Web Design
[CSSDevConf] Adaptive Images in Responsive Web Design 2014
Ad

More from Cloudinary (13)

PDF
Imagecon 2019 - Jon Sneyers
PDF
Imagecon 2019 - Jen Looper
PPTX
Imagecon 2019 - Amy Balliett
PPTX
Imagecon Itai
PPTX
ImageCon CTO keynote
PPTX
ImageCon keynote product
PDF
Drawing a Circle Three Ways: Generating Graphics for the Web
PDF
Images For Everyone
PDF
Beyond Resizing: The Image Performance Checklist
PDF
Moving Metrics with Better Mobile Images
PDF
Images in the Era of the Algorithm
PDF
Media Processing Workflows using AWS Step Functions and Machine Learning on A...
PPTX
The Physics of Fast Image Compression
Imagecon 2019 - Jon Sneyers
Imagecon 2019 - Jen Looper
Imagecon 2019 - Amy Balliett
Imagecon Itai
ImageCon CTO keynote
ImageCon keynote product
Drawing a Circle Three Ways: Generating Graphics for the Web
Images For Everyone
Beyond Resizing: The Image Performance Checklist
Moving Metrics with Better Mobile Images
Images in the Era of the Algorithm
Media Processing Workflows using AWS Step Functions and Machine Learning on A...
The Physics of Fast Image Compression

Recently uploaded (20)

PDF
Architecture types and enterprise applications.pdf
PDF
sustainability-14-14877-v2.pddhzftheheeeee
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PPTX
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
PDF
CloudStack 4.21: First Look Webinar slides
PPTX
O2C Customer Invoices to Receipt V15A.pptx
PPT
Module 1.ppt Iot fundamentals and Architecture
PDF
Hybrid model detection and classification of lung cancer
PDF
DP Operators-handbook-extract for the Mautical Institute
PDF
1 - Historical Antecedents, Social Consideration.pdf
DOCX
search engine optimization ppt fir known well about this
PDF
NewMind AI Weekly Chronicles – August ’25 Week III
PDF
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
PDF
Getting Started with Data Integration: FME Form 101
PDF
Getting started with AI Agents and Multi-Agent Systems
PDF
A novel scalable deep ensemble learning framework for big data classification...
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
PPTX
Benefits of Physical activity for teenagers.pptx
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
Architecture types and enterprise applications.pdf
sustainability-14-14877-v2.pddhzftheheeeee
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
MicrosoftCybserSecurityReferenceArchitecture-April-2025.pptx
CloudStack 4.21: First Look Webinar slides
O2C Customer Invoices to Receipt V15A.pptx
Module 1.ppt Iot fundamentals and Architecture
Hybrid model detection and classification of lung cancer
DP Operators-handbook-extract for the Mautical Institute
1 - Historical Antecedents, Social Consideration.pdf
search engine optimization ppt fir known well about this
NewMind AI Weekly Chronicles – August ’25 Week III
Hybrid horned lizard optimization algorithm-aquila optimizer for DC motor
Getting Started with Data Integration: FME Form 101
Getting started with AI Agents and Multi-Agent Systems
A novel scalable deep ensemble learning framework for big data classification...
Univ-Connecticut-ChatGPT-Presentaion.pdf
Benefits of Physical activity for teenagers.pptx
Assigned Numbers - 2025 - Bluetooth® Document
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf

Delivering Responsive Images