.. index:: 
  !DetectedFace.fromFile Method
  
.. _id3_face_detected_face_from_file_class_method:

===============================================================================
DetectedFace.fromFile Method
===============================================================================

Module: :ref:`DetectedFace<id3_face_detected_face_class>`

Definition
----------

Imports the face object from a file.


.. tab-set::

    .. tab-item:: Python
      :sync: Python

      .. code:: Python

        @staticmethod
        from_file(path: str) -> DetectedFace

      **Parameters**

        .. line-block::

          ``path`` str
          :guilabel:`in` Path to the file to import the face object from.


      **Returns**

        .. line-block::

          :ref:`DetectedFace<id3_face_detected_face_class>`
          The newly created detected face.

      **Exceptions**

        .. line-block::

          :ref:`FaceException<id3_face_face_exception>`
          An error has occurred during Face Library execution.


    .. tab-item:: Dart
      :sync: Dart

      .. code:: Dart

        static DetectedFace fromFile(String? path)

      **Parameters**

        .. line-block::

          ``path`` String
          :guilabel:`in` Path to the file to import the face object from.


      **Returns**

        .. line-block::

          :ref:`DetectedFace<id3_face_detected_face_class>`
          The newly created detected face.

      **Exceptions**

        .. line-block::

          :ref:`FaceException<id3_face_face_exception>`
          An error has occurred during Face Library execution.


    .. tab-item:: C#
      :sync: C#

      .. code:: C#

        public static DetectedFace FromFile(string path)

      **Parameters**

        .. line-block::

          ``path`` string
          :guilabel:`in` Path to the file to import the face object from.


      **Returns**

        .. line-block::

          :ref:`DetectedFace<id3_face_detected_face_class>`
          The newly created detected face.

      **Exceptions**

        .. line-block::

          :ref:`FaceException<id3_face_face_exception>`
          An error has occurred during Face Library execution.


    .. tab-item:: Java
      :sync: Java

      .. code:: Java

        public static DetectedFace fromFile(String path) throws FaceException

      **Parameters**

        .. line-block::

          ``path`` String
          :guilabel:`in` Path to the file to import the face object from.


      **Returns**

        .. line-block::

          :ref:`DetectedFace<id3_face_detected_face_class>`
          The newly created detected face.

      **Exceptions**

        .. line-block::

          :ref:`FaceException<id3_face_face_exception>`
          An error has occurred during Face Library execution.


    .. tab-item:: Swift
      :sync: Swift

      .. code:: Swift

        public static func fromFile(path: String) throws -> DetectedFace

      **Parameters**

        .. line-block::

          ``path`` String
          :guilabel:`in` Path to the file to import the face object from.


      **Returns**

        .. line-block::

          :ref:`DetectedFace<id3_face_detected_face_class>`
          The newly created detected face.

      **Exceptions**

        .. line-block::

          :ref:`FaceException<id3_face_face_exception>`
          An error has occurred during Face Library execution.


    .. tab-item:: C
      :sync: C

      .. code:: C

        int id3DetectedFace_FromFile (
            ID3_DETECTED_FACE hDetectedFace, 
            const char * path)

      **Parameters**

        .. line-block::

          ``hDetectedFace`` :ref:`ID3_DETECTED_FACE<id3_face_detected_face_class>`
          :guilabel:`in` Handle to the DetectedFace object.

          ``path`` const char *
          :guilabel:`in` Path to the file to import the face object from.


      **Returns**

        .. line-block::

          ``int``
          An error code.
          See :ref:`id3FaceError<id3_face_face_error_enum>` file for the list of possible error codes.


