HomeFormats › DDS

DDS files: what they are and how to open or convert game textures

DDS (DirectDraw Surface) is the texture format game engines and modding tools use: Skyrim, Fallout, GTA, Unity, Unreal, and countless others. It stores GPU-ready, block-compressed pixels (DXT1/DXT5/BC7) together with a mipmap chain, which is exactly why ordinary image viewers and editors cannot open it without a plugin.

What is a DDS file?

DDS, DirectDraw Surface, is Microsoft's container for textures that go straight to the graphics card. Instead of ordinary pixels it usually holds block-compressed data in formats like DXT1, DXT5, BC5, or BC7, which the GPU can read without decompressing, together with a chain of progressively smaller mipmaps used when the texture is seen from far away. That is why nearly every PC game and engine, from Skyrim and Fallout to Unity and Unreal, stores its textures as DDS.

How to open a DDS file

Ordinary image viewers cannot decode the GPU compression. Windows Photos, Paint, and browsers show nothing; Photoshop and GIMP need a plugin; Paint.NET has built-in support. The quickest route is to convert the DDS to PNG here: the converter decodes DXT1 through BC7 and uncompressed layouts in your browser and gives you a lossless PNG with the alpha channel intact.

Making DDS textures for a game

To go the other way, convert your PNG or TGA to DDS with DXT1 for opaque textures, DXT5 for textures with transparency, and generate mipmaps unless the texture is a UI element shown at a fixed size. Many engines require power-of-two dimensions such as 512, 1024, or 2048, so resize first if needed. Normal maps, specular maps, and other data textures follow game-specific rules; check the mod community for the title you are working on.

Frequently asked questions

What is the difference between DXT1 and DXT5?

DXT1 stores no usable alpha channel and is half the size; DXT5 keeps smooth transparency. Both compress colors the same way.

Why do the colors of a DDS look wrong?

Many game textures are not pictures: normal maps look blue or red-green, and specular or roughness data may live in the alpha channel. The file is decoded correctly; it just was not meant to be viewed.

Can DDS be converted without losing quality?

Decoding to PNG is lossless. Encoding to DXT is lossy, like JPG, though at texture sizes it is rarely visible in-game.

Convert or edit DDS files

Crop ImageCrop photos to a square, 16:9, 9:16, 4:5, or exact pixel size in your browserRotate ImageRotate images by 90, 180, or 270 degrees and flip them horizontally or vertically in your browserAdd Watermark to ImageStamp a text watermark on photos in your browser: choose position, size, opacity, or tile it across the imageImage to Pixel ArtTurn any photo or drawing into pixel art in your browser: choose the pixel size, a limited palette (16 colors, Game Boy, PICO-8), and ditheringSprite Sheet MakerPack animation frames or the frames of a GIF into a sprite sheet grid with JSON coordinates, in your browserSprite Sheet SplitterSplit a sprite sheet or tileset into individual PNG frames by grid or tile size, in your browserResize to 8×8Resize any image to exactly 8×8 pixels in your browser, with smooth or crisp pixel-art scaling and transparent paddingResize to 16×16Resize any image to exactly 16×16 pixels in your browser, with smooth or crisp pixel-art scaling and transparent paddingResize to 32×32Resize any image to exactly 32×32 pixels in your browser, with smooth or crisp pixel-art scaling and transparent paddingResize to 64×64Resize any image to exactly 64×64 pixels in your browser, with smooth or crisp pixel-art scaling and transparent paddingResize to 128×128Resize any image to exactly 128×128 pixels in your browser, with smooth or crisp pixel-art scaling and transparent paddingResize to 256×256Resize any image to exactly 256×256 pixels in your browser, with smooth or crisp pixel-art scaling and transparent paddingPixel Art UpscalerScale pixel art, sprites, and game textures up 2x to 16x with crisp nearest-neighbour scaling, in your browserDDS to PNG.dds → .pngDDS to JPG.dds → .jpgDDS to TGA.dds → .tgaImage to Text (OCR)Extract text from photos, screenshots, and scans in your browser with on-device OCR

Make DDS files

PNG to DDS.png → .ddsJPG to DDS.jpg → .ddsTGA to DDS.tga → .dds