You are here: Start » FIL.NET » Function Reference » Image » Image Basics » FIL.MakeImage
Converts a pixel array to a single-channel image.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void MakeImage ( IList<FilNet.Pixel> inPixels, int inWidth, int inHeight, FilNet.PlainType inType, int inDepth, FilNet.Image outImage )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
inPixels | System.Collections.Generic.IList<FilNet.Pixel> | ||||
inWidth | int | Output image width. | |||
inHeight | int | Output image height. | |||
inType | FilNet.PlainType | UInt8 | Output image pixel type. Default value: UInt8. | ||
inDepth | int | <1, 4> | Output image depth. | ||
outImage | FilNet.Image | Output image. |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.
Hardware acceleration settings may be manipulated with Settings class.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Incorrect array size in MakeImage. |
DomainError | Not supported image type in MakeImage. |