?/TD>
Microsoft DirectX 9.0

D3DXSaveVolumeToFile Function


Saves a volume to a file.

Syntax

HRESULT D3DXSaveVolumeToFile(      

    LPCTSTR pDestFile,     D3DXIMAGE_FILEFORMAT DestFormat,     LPDIRECT3DVOLUME9 pSrcVolume,     const PALETTEENTRY *pSrcPalette,     const D3DBOX *pSrcBox );

Parameters

pDestFile
[in] Pointer to a string that specifies the file name of the source image. If the compiler settings require Unicode, the data type LPCTSTR resolves to LPCWSTR. Otherwise, the string data type resolves to LPCSTR. See Remarks.
DestFormat
[in] D3DXIMAGE_FILEFORMAT specifying file format to use when saving.
pSrcVolume
[in] Pointer to IDirect3DVolume9 interface, containing the image to be saved.
pSrcPalette
[in] Pointer to a PALETTEENTRY structure containing a palette of 256 colors. This parameter can be NULL.
pSrcBox
[in] Pointer to a D3DBOX structure. Specifies the source box. Set this parameter to NULL to specify the entire volume.

Return Value

If the function succeeds, the return value is D3D_OK.

If the function fails, the return value can be the following.

D3DERR_INVALIDCALLThe method call is invalid. For example, a method's parameter may have an invalid value.


Remarks

The compiler setting also determines the function version. If Unicode is defined, the function call resolves to D3DXSaveVolumeToFileW. Otherwise, the function call resolves to D3DXSaveVolumeToFileA because ANSI strings are being used.

This function supports the following file formats: .bmp and .dds.

This function handles conversion to and from compressed texture formats.

If the volume is nondynamic (because of a usage parameter set to 0 at the creation) and located in video memory (the memory pool set to D3DPOOL_DEFAULT), D3DXSaveTextureToFile will fail because Direct3D extensions (D3DX) cannot lock nondynamic volumes located in video memory.

Function Information

Headerd3dx9tex.h
Import libraryd3dx9.lib
Minimum operating systems Windows 98

See Also

D3DXSaveSurfaceToFile, D3DXSaveTextureToFile


© 2002 Microsoft Corporation. All rights reserved.