-
Notifications
You must be signed in to change notification settings - Fork 452
PremultiplyAlpha
This converts an image assuming the original is not using premultiplied alpha into a premultiplied alpha version of the same image. The format and size are not changed.
Breaking Change notice: The 'flags' parameter was not present in the August 2013 and previous versions of DirectXTex.
HRESULT PremultiplyAlpha( const Image& srcImage, DWORD flags,
ScratchImage& image );
HRESULT PremultiplyAlpha( const Image* srcImages, size_t nimages,
const TexMetadata& metadata, DWORD flags,
ScratchImage& result );
flags: Combination of options to apply
-
PMALPHA_IGNORE_SRGB
Ignore any sRGB colorspace conversions
This controls color space transformation for conversions.
-
TEX_PMALPHA_SRGB_IN
Indicates the input format is the sRGB format. This is implied if using aDXGI_FORMAT_*_SRGB
format -
TEX_PMALPHA_SRGB_OUT
Indicates the output format is the sRGB format. This is implied if using aDXGI_FORMAT_*_SRGB
format -
TEX_PMALPHA_SRGB
This is the same as setting bothTEX_PMALPHA_SRGB_IN
andTEX_PMALPHA_SRGB_OUT
ScratchImage srcImage;
...
ScratchImage destImage;
hr = PremultiplyAlpha( srcImage.GetImages(), srcImage.GetImageCount(), srcImage.GetMetadata(), TEX_PMALPHA_DEFAULT destImage );
if ( FAILED(hr) )
...
This function does not operate directly on block compressed images. See Decompress and Compress.
This function cannot operate directly on a planar format image. See ConvertToSinglePlane for a method for converting planar data to a format that is supported by this routine.
This is most useful for working with rendering that relies on premultiplied alpha blending (see DirectXTK).
Premultiplied Alhpa (ShawnHar)
Premultiplied alpha (Tom Forsyth)
Gamma Correction vs. Premultiplied Pixels
All content and source code for this package are subject to the terms of the MIT License.
This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
- Universal Windows Platform apps
- Windows desktop apps
- Windows 11
- Windows 10
- Windows 8.1
- Xbox One
- Xbox Series X|S
- Windows Subsystem for Linux
- x86
- x64
- ARM64
- Visual Studio 2022
- Visual Studio 2019 (16.11)
- clang/LLVM v12 - v18
- GCC 10.5, 11.4, 12.3
- MinGW 12.2, 13.2
- CMake 3.20
DirectX Tool Kit for DirectX 11