FaceIndexer.fromHandle constructor

FaceIndexer.fromHandle(
  1. Pointer<id3FaceIndexer> handle
)

Creates a new instance of the FaceIndexer class.

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

Implementation

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