Skip to content

Texconv

Chuck Walbourn edited this page Jul 2, 2024 · 88 revisions

texconv.exe

This DirectXTex sample is an implementation of the texconv command-line texture utility from the legacy DirectX SDK utilizing DirectXTex rather than D3DX. This tool loads an image and prepares it for runtime use by resizing, format conversion, mip-map generation, block-compression, and writes the result in a file format suited for runtime use. It can also be used for other image-to-image processing.

To create cubemaps, volume maps, or texture arrays from individual files, use Texassemble.

The 'texconv' in the Azure Remote Rendering tooling is completely unrelated to this 'texconv' tool.

Syntax

Texconv.exe uses the following command syntax:

texconv [options] [-flist <filename>] <file-name(s)>

The file-name parameter indicates the file(s) to convert using dds, tga, hdr, ppm, pfm, or a WIC-supported format (bmp, jpg, png, jxr, etc.).

The command-line parsing uses Windows-style - or / for options. It also has some POSIX-like behavior: it supports --version and --help command-line options, and the use of -- disables further options parsing to support filenames that begin with - or / characters.

Optional Switches Description

File options

-r: Input file names can contain wildcard characters (? or *). If this switch is used, subdirectories are also searched. If -r:keep is specified, then the output directory includes the subdirectory structure of the source tree. If no option is specified or -r:flatten is used, then the resulting output directory just includes the files.

-flist filename: Uses the provided filename as a text file containing a list of input files (one per line). Ignores lines that begin with # (used for comments). Does not support providing additional command-line arguments or the use of filename wildcards.

-px string: Text string to attach to the front of the resulting texture's name. -sx string: Text string to attach to the end of the resulting texture's name.

-o directory: Output directory.

-l: Forces the output path & filename to all lower-case. Windows file system is case-insensitive by default, but some programs like git are case-sensitive.

-y: overwrite existing output file if any. By default, the tool will skip the write if the output file already exists.

File and pixel format options

-ft file-type: A file type for the output texture. Use one of the following. The default value is dds.

  • bmp: Windows BMP
  • jpg, jpeg: Joint Photographic Experts Group
  • png: Portable Network Graphics
  • dds: DirectDraw Surface (Direct3D texture file format)
  • tga: Truevision Graphics Adapter
  • hdr: Radiance RGBE
  • tif, tiff: Tagged Image File Format
  • wdp, hdp, jxr: Windows Media Photo
  • ppm, pfm: Portable PixMap, Portable FloatMap (Netpbm)

-f format: Output format. Specify the DXGI format without the DXGI_FORMAT_ prefix (i.e. -f R10G10B10A2_UNORM). It also supports some common aliases (-f DXT1 for DXGI_FORMAT_BC1_UNORM, -f DXT5 for DXGI_FORMAT_BC3_UNORM, -f BGRA for DXGI_FORMAT_B8G8R8A8_UNORM, -f BGR for DXGI_FORMAT_B8G8R8X8_UNORM, -f FP16 for DXGI_FORMAT_R16G16B16A16_FLOAT, etc.)

Resizing and mipmap options

-w number: Width of the output texture in pixels. -h number: Height of the output texture in pixels. If no size is given, the size is taken from the first input image.

-m number: Number of mipmap levels to generate in the output texture. This setting only applies to DDS output, which defaults to 0 which is generate all mipmaps. Use -m 1 to remove mipmaps.

-pow2: Fits each texture to a power-of-2 for width & height, minimizing changes to the aspect ratio. The maximum size for a dimension is based on the -fl switch (defaults to 16384).

Filtering options

-if filter: Image filter used for resizing the images. Use one of the following: POINT, LINEAR, CUBIC, FANT, BOX, TRIANGLE, POINT_DITHER, LINEAR_DITHER, CUBIC_DITHER, FANT_DITHER, BOX_DITHER, TRIANGLE_DITHER, POINT_DITHER_DIFFUSION, LINEAR_DITHER_DIFFUSION, CUBIC_DITHER_DIFFUSION, FANT_DITHER_DIFFUSION, BOX_DITHER_DIFFUSION, or TRIANGLE_DITHER_DIFFUSION. Filters with DITHER in their name indicate that the 4x4 ordered dither algorithm, while DITHER_DIFFUSION is error diffusion dithering.

-wrap, -mirror: Sets the texture addressing mode for filtering to wrap or mirror, otherwise defaults to clamp.

-nowic: Forces filtering to use non-WIC-based code paths. This is useful for working around known issues with WIC depending on which operating system you are using.

Colorspace options

-srgb, -srgbi, or -srgbo: Use sRGB if both the input and output data are in the sRGB color format (ie. gamma ~2.2). Use sRGBi if only the input is in sRGB; use sRGBo if only the output is in sRGB.

-rotatecolor rot: Performs color rotations and/or ST.2084 curves for converting image data to/from HDR10 signals.

  • 709to2020: Converts from Rec.709 color primaries to Rec.2020 color primaries.
  • 2020to709: Converts from Rec.2020 color primaries to Rec.709 color primaries.
  • 709toHDR10: Converts from Rec.709 color primaries to Rec.2020, normalizing nits, and applying the ST.2084 curve to create an HDR10 signal.
  • HDR10to709: Converts an HDR10 signal back to Rec.709 color primaries with linear values.
  • P3to2020: Converts from DCI-P3 color primaries to Rec.2020 color primaries.
  • P3toHDR10: Converts from DCI-P3 color primaries to Rec.2020, normalizing nits, and applying the ST.2084 curve to create an HDR10 signal.
  • 709toDisplayP3: Converts from Rec.709 color primaries to Display-P3 (D65 white point)
  • DisplayP3to709: Converts from Display-P3 (D65 white point) to Rec.709 color primaries.

-nits number: Provides a paper-white nits value for the HDR10 conversions above (defaults to 200.0) with an upper limit of 10000.

-tonemap: Applies a Reinhard tonemap operator based on maximum luminosity to ensure HDR image data is adjusted to an LDR range.

Alpha options

-pmalpha: Converts the final texture data to use premultiplied alpha. This sets an alpha mode of DDS_ALPHA_MODE_PREMULTIPLIED unless the entire alpha channel is fully opaque.

-alpha: Converts a premultiplied alpha image to non-premultiplied alpha (a.k.a. straight alpha).

-sepalpha: Separates alpha channel for resize/mipmap generation. This implies an alpha mode setting of DDS_ALPHA_MODE_CUSTOM as this is typically only used if the alpha channel doesn't contain transparency information.

Without this flag, anywhere you have a 0 in the alpha channel, the RGB will be zero because of the fact that WIC operates with premultiplied-alpha. If the alpha channel is actually transparency, the default behavior works fine.

-at number: Sets the alpha threshold value for 1-bit alpha such as BC1 or RGBA5551. Defaults to 0.5.

-keepcoverage number: Preserves alpha coverage in generate mipmaps for alpha test reference value (0 to 1).

-c color: Provides a colorkey/chromakey value which is used to replace a specific RGB color in hexadecimal (within a tolerance) with alpha 0.0. Any existing color channel is overwritten. For example, -c 0000FF for a blue colorkey, -c 00FF00 for a green colorkey, -c 0CFF5D for the typical 'green-screen' in a video.

Block Compression (BC) options

-singleproc: If the DirectXTex library and the texconv utility are built with OpenMP enabled, by default the tool will use multi-threading for CPU-based compression of BC6H and BC7 formats to spread the compression work across multiple cores. This flag disables this behavior forcing it to remain on a single core.

-gpu adapterIndex: When compressing BC6H / BC7 content, texconv will use DirectCompute on the GPU at the given index if available. The default is 0 which is the default adapter.

-nogpu: When compressing BC6H / BC7 content, texconv will use DirectCompute on the GPU if available. Use of this flag forces texconv to always use the software codec instead.

-bc flags: Sets options for BC compression. The flags is a combination of one or more of the following:

  • u: to use uniform weighting rather than perceptual (BC1-BC3)
  • d: use dithering (BC1-BC3)
  • q: Uses minimal compression (BC7: uses just mode 6)
  • x: Uses maximum compression (BC7: enables mode 0 & 2 usage)

-aw number: Provides an alpha weighting to use with the error metric for the BC7 GPU compressor. Defaults to 1.0.

Normal-map generation options

-nmap: flags Indicates conversion from a height-map to a normal-map. The flags is a combination of one or more of the following, and must have one of r, g, b, a, or l:

  • r: Use the red channel of the input as the height
  • g: Use the green channel of the input as the height
  • b: Use the blue channel of the input as the height
  • a: Use the alpha channel of the input as the height
  • l: Use the luminance computed from red, green, and blue channels of the input as the height
  • m: Use mirroring in U & V. Defaults to wrap when doing the central difference computation.
  • u: Use mirroring in U. Defaults to wrap when doing the central difference computation.
  • v: Use mirroring in V. Defaults to wrap when doing the central difference computation.
  • i: Invert sign of the computed normal
  • o: Compute a rough occlusion term and encode it into the alpha channel of the output.

-nmapamp number: Indicates an amplitude for the normal map, which defaults to 1.

Remember that the output format defaults to the input format, so be sure to use -f if you want a different output format. See ComputeNormalMap for more information.

-inverty: Inverts the value of the green channel. This is typically used for normal maps to deal with OpenGL vs. Direct3D conventions for 'push in' vs. 'push out'.

-reconstructz: Rebuilds the Z (blue) channel assuming X/Y are normals (primarily for converting from the BC5 format)

-x2bias: Enables special *2 -1 conversion cases for converting unorm <-> float, and positive-only-floats <-> float/snorm. These are typically used with normal maps.

Image operation options

-hflip: Perform horizonal flip of image -vflip: Perform horizonal flip of image

-swizzle rgbamask: Swizzles image channels using an HLSL-style mask (rgba, rrra, r, a, xy, etc.). The mask is 1 to 4 characters in length. A 0 indicates setting that channel to zero, a 1 indicates setting that channel to maximum.

Windows Image Component (WIC) options

-wicq number: Provides an image quality setting to use when encoding WIC images ranging from 0.0 to 1.0. Applies to jpg, tiff, and jxr.

-wiclossless: Enable lossless encoding when encoding WIC images. Applies to jpg, tiff, and jxr.

-wicmulti: When encoding WIC images, the use of this flag will encode multiframe images. By default it writes only the first frame like the hdr andtga writers. Note that only some WIC containers support multiframe images (notably gif and tif).

DirectDraw Surface (DDS) file options

-tu: DDS files with TYPELESS formats are treated as UNORM -tf: DDS files with TYPELESS formats are treated as FLOAT

Generally typeless formats will fail most operations, so these options let you override the type.

-dword: For DDS files that use a DWORD alignment instead of BYTE alignment (used for some legacy files typically 24bpp).

-badtails: For older DDS files that incorrectly encode the DXTn block compression mipchain surface blocks smaller than 4x4. This switch causes the loader to tolerate the slightly too short file length and to copy the 4x4 blocks to the smaller ones. The result is not identical to re-computing computing the mipchain fully, but does provide non-corrupted data.

-permissive: Allows some malformed and variant header files to be loaded.

-ignoremips: Loads only the top-level mipmap, which is useful for some malformed files that are missing data.

-fixbc4x4: DDS files can contain BC compressed DDS files of arbitrary size, but Direct3D can only create BC resources where the top-level width & height are multiples of 4. This switch will resize the image to the proper size for loading as a texture, but any mipmaps will have to be regenerated.

-xlum: DDS files with L8, A8L8, or L16 formats are expanded to 8:8:8:8 or 16:16:16:16. Without this flag, they are converted to 1-channel (red) or 2-channel (red/green) formats.

-dx10: Forces DDS file output to always use the "DX10" header extension, and allows the writing of alpha mode metadata information. The resulting file may not be compatible with the legacy D3DX10 or D3DX11 libraries or older DDS readers.

-dx9: Forces DDS file output to always use legacy DX9 headers. This will fail for BC6, BC7, UINT, and SINT formats. SRGB formats will be written using non-SRGB formats. It will also fail for texture 2D arrays and cubemap arrays. This is primarily of use with DX9 era DDS texture loaders.

Targa TruVision (TGA) file options

-tga20: Forces TGA file output to include the TGA 2.0 extension area which includes gamma, alpha mode, and a time stamp.

-tgazeroalpha: By default a TGA file with an alpha channel of all zeros is treated as 'opaque' which results in all ones for the alpha channel if present. With this switch, all zero alpha channels will be returned in their original form instead.

Direct3D options

-fl feature-level: Sets the target feature level which determines the maximum supported texture size: 9.1, 9.2, 9.3, 10.0, 10.1, 11.0, 11.1, 12.0, 12.1, or 12.2. Defaults to 11.0 which is 16834, the limit for 11.x and 12.x Direct3D Hardware Feature Level.

Miscellaneous options

-nologo: Suppress copyright message.

-timing: Displays compression timing information

Examples

Open a Command Prompt, and change to the directory containing Texconv.exe (i.e. ...\DirectXTex\Texconv\Release)

Enter the following command-line after changing to the appropriate directory:

texconv -pow2 -f BC1_UNORM cat.jpg

This loads a JPEG image 'cat.jpg', resizes the image to a power of 2 in each dimension (if the original was 512 x 683 it is resized to 256 x 512), mipmaps are generated, the file is converted to DXGI_FORMAT_BC1_UNORM (aka DXT1) block compression, and written out as 'cat.dds'.

texconv -r C:\Textures\*.png

This converts all the .png files in the C:\Textures directory tree to dds files written into the current working directory.

texconv -nmap lo -nmapamp 2 -f R8G8B8A8_UNORM heightmap.png

This loads the PNG image 'heightmap.png', converts it to a normal-map using luminance and an amplitude of 2, and writes the data out as a 'heightmap.dds' with mipmaps and an occlusion term in the alpha channel using the DXGI_FORMAT_R8G8B8A8_UNORM format.

texconv myimage.hdr -tonemap -ft BMP

This loads the HDR (Radiance RGBE) image myimage.hdr, performs a tone-mapping operation, and then writes the result to myimage.bmp.

texconv -pow2 -fl 9.3 -f BC3_UNORM -m 1 *.bmp

This creates a DDS file for each BMP file in the current directory that is sized to a power-of-2 respecting aspect ratio with a maximum size of 4096 for a given dimension. The results are compressed as DXGI_FORMAT_BC3_UNORM (a.k.a. DXT5) and have no mipmaps.

Remarks

When loading BMP files, if the WIC codec fails to load the image, the texconv tool will check to see if it's an Extended BMP containing DXT1, DXT3, or DXT5 compressed data. The tool does not support writing Extended BMP files. Typically you need to use -vflip with such files as well.

Support for OpenEXR (EXR) can be added to the texconv utility. Uncomment #define USE_OPENEXR in the source, and add the DirectXTex auxiliary module to the project. See Adding OpenEXR for more details including building the OpenEXR library. This adds exr as an option for -ft.

The texconv tool supports any additional installed WIC codec. For example, if you install the HEIF WIC Codec, the tool can successfully read .HEIF or .HEIC images. This WIC codec does not support writing these files formats, so texconv cannot output them.

Further reading

Reinhard et al., "Photographic tone reproduction for digital images", ACM Transactions on Graphics, Volume 21, Issue 3 (July 2002). ACM DL.

For Use

  • Universal Windows Platform apps
  • Windows desktop apps
  • Windows 11
  • Windows 10
  • Windows 8.1
  • Windows 7 Service Pack 1
  • Xbox One
  • Xbox Series X|S
  • Windows Subsystem for Linux

For Development

  • Visual Studio 2022
  • Visual Studio 2019 (16.11)
  • clang/LLVM v12 - v16
  • GCC 9.4, 11.3
  • MinGW 12.2, 13.2
  • CMake 3.20

Related Projects

DirectXTex Rust bindings

DirectX Tool Kit for DirectX 11

DirectX Tool Kit for DirectX 12

DirectXMesh

DirectXMath

Tools

Test Suite

Content Exporter

DxCapsViewer

See also

DirectX Landing Page

Clone this wiki locally