Il formato di file DDS è spesso utilizzato nei giochi per memorizzare texture e mappe ambientali. Supporta sia texture compresse che non compresse.
Nella maggior parte dei casi, i motori di gioco richiedono che le dimensioni delle texture siano una potenza di due, ma larghezza e altezza non devono essere necessariamente uguali. I valori più comuni sono 64, 128, 256, 512, ecc.
Tipo di compressione da utilizzare. Se impostato su Nessuno, è possibile selezionare il formato non compresso da Formato.
Di solito i giochi supportano solo alcuni formati compressi e non compressi. Controllare la documentazione del gioco per scoprire quali modalità supportano.
I dati dell'immagine vengono memorizzati non compressi. Il formato effettivo è determinato dall'impostazione Formato.
Stores 5 bits of red, 6 bits of green and 5 bits of blue per color. If there is an alpha channel, only 1 bit of alpha (either full transparent or full opaque) is stored, taking away 1 bit of green.
This format creates the smallest size files. It doesn't work well on images that have sudden changes in color, like pixel art. In general not recommended when you have an alpha channel.
Stores colors the same as DXT1, except it also stores full alpha channels. This format is rarely used.
Stores colors the same as DXT1, but supports full alpha channels, which it stores pre-multiplied.
In general preferrable over DXT3 and commonly used where alpha channels are important.
A variant of DXT5 used for storing normal maps.
This is used for storing one color channel only. Only the red channel in a color image will be stored. The other channels will be ignored as well as the alpha channel.
This is used for storing two color channels. Only the red and green channels in a color image will be stored. The blue channel will be ignored as well as the alpha channel.
A variant of DXT5. It is rarely used and requires explicit support by the game that uses it.
A variant of DXT5 that has a highly compressed alpha channel.
A special variant of DXT5 that converts the RGB color channels to YCoCg, which allows high-quality compression of images. This requires explicit support by the game that uses it.
Same as above, but improves pixel quality at the cost of longer processing time. This requires explicit support by the game that uses it.
This setting is only enabled when compression is not None. Enabling this setting may enhance visual quality in certain cases.
This setting determines the color format for non-compressed textures. There exist a wide range of formats, but not all of them are equally well supported by games and image viewers.
Chooses the best fitting format based on the type of image.
This format stores 8 bits per channel for red, green and blue.
This format stores 8 bits per channel for red, green, blue and alpha.
This format stores 8 bits per channel in reverse order for blue, green and red.
This format stores 8 bits per channel in reverse order with the alpha channel first, then blue, green and red.
This format stores 5 bits of red, 6 bits of green and 5 bits of blue.
This format stores 4 bits of red, green, blue and alpha.
This format stores 5 bits of red, green and blue, with one bit of alpha.
This format stores 10 bits of red, green and blue, with two bits of alpha.
This format stores three bits of red and green and two bits of blue.
This format stores a single component of 8 bits. This is taken from the alpha channel.
This format stores a single component of 8 bits. This is taken from the red or grayscale channel. This is often used to enhance luminance.
This format stores two components of 8 bits. This is taken from the red or grayscale and alpha channels. This is often used to enhance luminance.
This stands for «Alpha Exponent» and uses the same algorithm as the Alpha Exponent (DXT5) compression.
This is rarely used. Check first if it is supported and required by your game engine.
This uses the same algorithm as the YCoCg (DXT5) compression.
This is rarely used. Check first if it is supported and required by your game engine.
This determines how your image will be saved.
Only the currently selected layer will be exported.
All visible layers will be merged and then exported.
Your selected layer will be exported as a cube map. A cube map is a special layout of related textures, where each layer represents one side of a cube.
A Cube Map requires six layers that are all the same size, with or without transparency. Each layer must have one of the correct identifiers at the end of the layer name.
These identifiers are «Front», «Back», «Left», «Right», «Top», «Bottom». For example your layers could be named: «woodland_front», «woodland_back», etc.
This setting is only enabled when the above conditions are met.
Your selected layer will be exported as a volume map. A volume map is similar to a cube map, but the textures are not expected to be part of a cube, so no fixed number of layers are required.
A Volume Maps also requires all layers to have the same size, with or without transparency. However, you are not limited to the number of layers you want to use and no special naming of layers is required.
This setting is only enabled when the above conditions are met.
Your image will be exported as a texture array. Only layers that have the same size as the image will be exported. This stores a collection of textures in one image.
This setting is only enabled when there are at least two layers.
Some game engines require the image to be turned upside down. Enabling this setting will do that for you.
Mipmaps are reduced size versions of the same image where each mipmap is half the width and height of the previous one. Often used in game engines to improve loading in scenes where the object is located far away.
No mipmaps are added to the exported image.
New mipmaps are created and added to the exported image.
Already available mipmaps in your image will be reused and added to the exported image. This will only be enabled if the correct number of mipmaps using the expected sizes are available.
When checked, this uses the below specified indexed color for setting transparency in the exported image. This setting is only enabled when your image is in indexed mode.
Quando l'impostazione precedente è selezionata e abilitata, è possibile specificare quale indice della tavolozza deve essere utilizzato per la trasparenza nell'immagine esportata.
Le seguenti opzioni sono abilitate solo quando si aggiungono mipmap all'immagine.
This setting determines which filter will be used for interpolation when downsizing your image to create a mipmap.
No filtering is applied to create the mipmap. This can cause visual anomalies such as excessively sharp edges and stair-stepping artifacts.
This is a bilinear filter, may enable better switching between mipmaps.
This is a polyphase box filter. Outside of the Lanczos and Kaiser filters, it’s a good choice for most cases and also much faster than other filters.
This uses a triangle filter. The kernel has a larger width and thus produces blurrier results than the Box filter.
Questo è un tipo di filtro gaussiano.
Questo è un filtro trilineare.
This filter is used primarily to reduce loss of detail while upsampling.
Questo filtro è simile al filtro Kaiser. I risultati sono solitamente indistinguibili tra i due. Lanczos potrebbe gestire meglio le risonanze e gli artefatti. Questo filtro può essere ulteriormente ottimizzato utilizzando l'impostazione Modalità a capo.
Questo filtro è generalmente considerato la scelta migliore per il downsampling, ma per ottenere risultati ottimali è consigliabile sperimentare con l'impostazione Modalità a capo. In caso contrario, le immagini risultanti potrebbero presentare artefatti di fringing o il risultato potrebbe non essere nitido come desiderato.
When evaluating the color of texels that are near the border, most of the filters usually sample outside of the texture. This setting determines how these samples are handled.
This generally looks good enough. Often better results can be achieved by explicitly specifying one of the next modes.
Mirroring is used for many other image processing operations, like normal map generation, and is generally considered the best option. It takes the data from the other side of the image.
This takes the data outside the edges from the value just inside it.
This clamps the data outside the edges to the values at the edges.
When checked, uses gamma correction for mipmap filtering. This adjusts the reflectiveness of an object while also making the entire image lighter or darker, depending on the value used below.
Se selezionata, utilizza lo spazio colore sRGB per la correzione gamma delle mipmap.
Qui si può impostare il valore Gamma desiderato da utilizzare per la correzione gamma.
Se selezionata, questa opzione preserva la copertura del test alfa per le mappe del canale alfa, in base a una soglia impostata di seguito.
The threshold value to be used for preserving test coverage of alpha channels.