Back to Aurora Vision Library Lite website

You are here: Start » All Functions » EXIF » EXIF_LoadFromJpgFile

EXIF_LoadFromJpgFile


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Header: STD.h
Namespace: avl

Reads an EXIF informations from the JPG image.

Syntax

void avl::EXIF_LoadFromJpgFile
(
	const atl::File& inFile,
	atl::String& outDateTime,
	atl::String& outDescription,
	atl::String& outOrientation,
	atl::Array<atl::String>& outValues,
	atl::Array<atl::String>& outLabels
)

Parameters

Name Type Default Description
Input value inFile const File& Path to the JPG file.
Output value outDateTime String& Date time when image was taken.
Output value outDescription String& Additional image description.
Output value outOrientation String& Image orientation.
Output value outValues Array<String>& Values of all EXIF tags.
Output value outLabels Array<String>& Names of all EXIF tags.

Errors

List of possible exceptions:

Error type Description
IoError FIle does not exist in EXIF_LoadFromJpgFile.
IoError Unable to retrieve EXIF from the file in EXIF_LoadFromJpgFile.