You are here: Start » FIL.NET » Invoke.LoadImageFromBuffer

Invoke.LoadImageFromBuffer

Loads a single image from a file stored in memory.

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void LoadImageFromBuffer
(
	Fil.ByteBuffer inBuffer,
	int inOffset,
	Optional<int> inLength,
	bool inLoadAlphaChannel,
	Fil.Image outImage
)

Parameters

Name Type Range Default Description
inBufferFil.ByteBufferSource buffer containing image file data.
inOffsetint0Image data start position in source buffer. Default value: 0.
inLengthFtl.Optional<int>Image data length in source buffer. Default value: ftl::NIL.
inLoadAlphaChannelboolWhether to load the alpha channel (if exists) as an additional image channel.
outImageFil.ImageOutput image.

See also