ImageText-based

image/vnd.dxf

AutoCAD DXF

Reference for image/vnd.dxf, the MIME type for AutoCAD Drawing Exchange Format files for CAD interoperability.

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: .dxf

HTTP Content-Type Header

HTTP Header
Content-Type: image/vnd.dxf; charset=utf-8

Associated File Extensions

.dxf

Quick Facts

MIME Typeimage/vnd.dxf
CategoryImage
TypeText-based (human-readable)
Extensions.dxf

Common Usage

DXF is an open CAD interchange format created by Autodesk. It enables CAD drawing exchange between different software applications.

Used in CNC machining, laser cutting, 3D printing slicing, and any workflow requiring interoperability between different CAD tools.

Code Examples

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

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

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

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

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.