Image.fromFile Method¶
Module: Image
Definition¶
Creates an Image from the specified file.
@staticmethod
from_file(filepath: str, pixel_format: PixelFormat) -> Image
Parameters
filepathstrin A string that contains the name of the file from which to create the Image.pixel_formatPixelFormatin The pixel format into which to convert the input image.
Returns
The newly created image.
Exceptions
An error has occurred during Face Library execution.
static Image fromFile(String? filepath, PixelFormat pixelFormat)
Parameters
filepathStringin A string that contains the name of the file from which to create the Image.pixelFormatPixelFormatin The pixel format into which to convert the input image.
Returns
The newly created image.
Exceptions
An error has occurred during Face Library execution.
public static Image FromFile(string filepath, PixelFormat pixelFormat)
Parameters
filepathstringin A string that contains the name of the file from which to create the Image.pixelFormatPixelFormatin The pixel format into which to convert the input image.
Returns
The newly created image.
Exceptions
An error has occurred during Face Library execution.
public static Image fromFile(String filepath, PixelFormat pixelFormat) throws FaceException
Parameters
filepathStringin A string that contains the name of the file from which to create the Image.pixelFormatPixelFormatin The pixel format into which to convert the input image.
Returns
The newly created image.
Exceptions
An error has occurred during Face Library execution.
public static func fromFile(filepath: String, pixelFormat: PixelFormat) throws -> Image
Parameters
filepathStringin A string that contains the name of the file from which to create the Image.pixelFormatPixelFormatin The pixel format into which to convert the input image.
Returns
The newly created image.
Exceptions
An error has occurred during Face Library execution.
int id3FaceImage_FromFile (
ID3_FACE_IMAGE hImage,
const char * filepath,
id3FacePixelFormat ePixelFormat)
Parameters
hImageID3_FACE_IMAGEin Handle to the Image object.filepathconst char *in A string that contains the name of the file from which to create the Image.ePixelFormatid3FacePixelFormatin The pixel format into which to convert the input image.
Returns