| ImageUtilityLoadFromVirtualFile Method  | 
 
            Loads an image file.
            
 
    Namespace: 
   NeoAxis
    Assembly:
   NeoAxis.Core (in NeoAxis.Core.dll) Version: 2024.1.1.0 (2024.1.1.0)
 Syntax
Syntaxpublic static bool LoadFromVirtualFile(
	string virtualFileName,
	out byte[] data,
	out Vector2I size,
	out int depth,
	out PixelFormat format,
	out int numFaces,
	out int numMipmaps,
	out string error
)
Parameters
- virtualFileName
- Type: SystemString
 The virtual file name.
- data
- Type: SystemByte
 The image data.
- size
- Type: NeoAxisVector2I
 The image size.
- depth
- Type: SystemInt32
 The image depth (in 3d images, numbers of layers, otherwhise 1).
- format
- Type: NeoAxisPixelFormat
 Pixel format.
- numFaces
- Type: SystemInt32
 The number of faces the image data has inside (6 for cubemaps, 1 otherwise).
- numMipmaps
- Type: SystemInt32
 The number of mipmaps the image data has inside.
- error
- Type: SystemString
 Output error string.
Return Value
Type: 
Booleantrue if image is loaded; otherwise, 
false.
 See Also
See Also