Exiftool.Result (exiftool v0.2.0) View Source

Normalize exif data.

Link to this section Summary

Functions

read/1 normalize map keys.

Link to this section Functions

Specs

read(map()) :: Map.t()

read/1 normalize map keys.

  • Replace spaces.
  • Replace backslashes.
  • Replace dots.
  • Downcase keys.

## Examples

  iex> Result.read(%{bits_per_sample: "8", color_components: "3",})
  %{"bits_per_sample" => "8", "color_components" => "3"}