Click or drag to resize

ImageUtilityLoadFromVirtualFile Method

Loads an image file.

Namespace: NeoAxis
Assembly: NeoAxis.Core (in NeoAxis.Core.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public 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  String
The virtual file name.
data  Byte
The image data.
size  Vector2I
The image size.
depth  Int32
The image depth (in 3d images, numbers of layers, otherwhise 1).
format  PixelFormat
Pixel format.
numFaces  Int32
The number of faces the image data has inside (6 for cubemaps, 1 otherwise).
numMipmaps  Int32
The number of mipmaps the image data has inside.
error  String
Output error string.

Return Value

Boolean
true if image is loaded; otherwise, false.
See Also