ImageDict.fromHandle constructor

ImageDict.fromHandle(
  1. Pointer<id3FaceImageDict> handle
)

Creates a new instance of the ImageDict class.

param handle Handle to the ImageDict. throws FaceException An error has occurred during Face Library execution.

Implementation

ImageDict.fromHandle(Pointer<id3FaceImageDict> handle) {
  _pHandle = calloc();
  _pHandle.value = handle;
  _disposable = false;
}