info method

ImageInfo info()

Information about stored image.

Implementation

ImageInfo info() {
  return using((Arena arena) {
    Pointer<Utf8> pUUID = uniqueId!.toNativeUtf8(allocator: arena);
    CImageInfo cImageInfo = _nativeInfo(pUUID);
    return ImageInfo(
        height: cImageInfo.height,
        width: cImageInfo.width,
        maxByteSize: cImageInfo.maxByteSize);
  });
}