image/jpeg
JPEG image
Image
.jpg
MIME Type
Media Type
image/jpeg
File Extension
.jpg
Usage Examples
HTTP Response Header
Content-Type: image/jpeg
HTML Link Tag
<link rel="stylesheet" type="image/jpeg" href="style.css">
JavaScript Fetch API
fetch('/api/data', {
headers: {
'Content-Type': 'image/jpeg'
}
})Express.js (Node.js)
res.setHeader('Content-Type', 'image/jpeg');
res.send(data);When to Use This MIME Type
Image MIME types tell the browser how to render image files. Using the correct type ensures proper display and allows for content negotiation.