ImageBinary

image/vnd.adobe.photoshop

Photoshop Document

Reference for image/vnd.adobe.photoshop, the MIME type for Adobe Photoshop PSD files with layers and editing data.

MIME Type Detector

Drop a file to detect its MIME type — no upload, runs in your browser

📄

Drop any file here or click to choose

Expected extensions: .psd

HTTP Content-Type Header

HTTP Header
Content-Type: image/vnd.adobe.photoshop

Associated File Extensions

.psd

Quick Facts

MIME Typeimage/vnd.adobe.photoshop
CategoryImage
TypeBinary
Extensions.psd

Common Usage

PSD is Adobe Photoshop's native format, preserving layers, masks, adjustment layers, paths, and editing state. It is the standard format for professional graphic design workflows, enabling non-destructive editing and collaboration between designers.

Code Examples

HTML
<!-- Link or embed with explicit type -->
<link rel="stylesheet" href="file.psd" type="image/vnd.adobe.photoshop">

<!-- Or for script/media elements -->
<script type="image/vnd.adobe.photoshop" src="file.psd"></script>
Node.js
// Express.js
app.get('/file', (req, res) => {
  res.type('image/vnd.adobe.photoshop');
  res.send(data);
});

// Node.js http
res.writeHead(200, { 'Content-Type': 'image/vnd.adobe.photoshop' });
nginx
# nginx.conf — add to types block or use default
types {
    image/vnd.adobe.photoshop  psd;
}

# Or set for a specific location
location /api/ {
    default_type image/vnd.adobe.photoshop;
}

Related MIME Types

More Image MIME Types

Other image types in the Image family

Related Tools

Explore More MIME Types

Browse our complete reference of 185 MIME types with usage examples, HTTP headers, and code snippets.