You are here: Start » FIL.NET » 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 | |
---|---|---|---|---|---|
![]() | inBuffer | Fil.ByteBuffer | Source buffer containing image file data. | ||
![]() | inOffset | int | 0 | Image data start position in source buffer. Default value: 0. | |
![]() | inLength | Ftl.Optional<int> | Image data length in source buffer. Default value: ftl::NIL. | ||
![]() | inLoadAlphaChannel | bool | Whether to load the alpha channel (if exists) as an additional image channel. | ||
![]() | outImage | Fil.Image | Output image. |