Truxton exif add note

From truxwiki.com
Jump to navigation Jump to search

This will add a note to the EXIF object. It will cause a record to be created in the [InvestigatorNote] table.

Syntax

int truxton_exif_add_note( uint64_t exif_handle, char const * text );

Parameters

exif_handle

This handle comes from calling truxton_exif_create() or truxton_file_create_exif().

text

The contents of the note.

Return value

A non-zero value on success, zero on failure.

Sample

void mark_as_illicit_producer( uint64_t exif_handle )
{
   truxton_exif_add_note( exif_handle, "I can't believe someone would take a photo of this." );
}