Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 852 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 852 Bytes

Image Metadata Inspector

Usage

./executable <path to an image>

Examples

screenshot

a good example of textual metadata that can be found in a png image:

screenshot

jpg metadata example:

screenshot

building

  • this is what your build.sh/build.bat script for this project might look like
  1. on Linux
cc -o imi jpg_operations.c png_operations.c inspector.c csv_lookup.c
  1. on Windows
@echo off
clang -o imi.exe jpg_operations.c png_operations.c inspector.c csv_lookup.c