.dds

What is a .dds file?

DDS is a texture format optimised for real-time rendering in games and GPU-accelerated applications.

Safe format
Type Image
By Microsoft
MIME image/vnd.ms-dds

Drop any file to identify it

No upload. No signup. No sending your file halfway across the internet.
We tell you what it is, right here in your browser.

What is it

DDS is the format GPUs actually understand. While PNG and JPG need to be decompressed into raw pixels before the GPU can use them, DDS stores textures in GPU-native compressed formats (BC1-BC7, also known as DXT1-DXT5) that the GPU reads directly from memory. This means faster loading, lower memory usage, and zero runtime decompression cost.

The format was introduced by Microsoft for DirectX and became the standard texture format for PC game development. A typical modern game ships thousands of DDS files — diffuse maps, normal maps, specular maps, environment maps — all in GPU-compressed formats that would look terrible if you opened them as regular images but look perfect when rendered on a 3D model.

DDS files also support mipmaps (pre-computed smaller versions of the texture for distance rendering), cube maps (six-face environment maps), and volume textures. For game modding, NVIDIA's DDS utilities or Intel's Texture Works plugin for Photoshop are the standard tools. GIMP can read DDS with a plugin. For viewing, Windows' built-in preview handles DDS in recent versions.

Technical details
Full Name
DirectDraw Surface
MIME Type
image/vnd.ms-dds
Developer
Microsoft
Magic Bytes
44 44 53 20
Safety
.dds is a known, safe format. Texture data only. No executable content.
What opens it
GIMP (+ DDS plugin)
FREE Windows / Mac / Linux
Paint.NET (+ DDS plugin)
FREE Windows
IrfanView
FREE Windows
FAQ
Why do games use DDS instead of PNG?
DDS stores textures in GPU-native compressed formats (BC1-BC7) that the GPU reads directly without decompression. This means faster loading, lower VRAM usage, and better performance compared to PNG, which must be decompressed to raw pixels first.
How do I open DDS files?
GIMP with the DDS plugin, Paint.NET with its DDS plugin, or IrfanView. For professional game art, NVIDIA's DDS tools or Intel Texture Works (Photoshop plugin) offer full control over compression settings.
Related formats