Run exiftool and capture output.
(image_path)
| 861 | |
| 862 | # TODO Add in the following test |
| 863 | def run_exiftool(image_path): |
| 864 | """Run exiftool and capture output.""" |
| 865 | result = run_silent_command(f"exiftool '{image_path}'") |
| 866 | if result: |
| 867 | prGreen("ExifTool Output:\n", result) |
| 868 | else: |
| 869 | prRed("ExifTool: No metadata found or failed.") |
| 870 | |
| 871 | |
| 872 | def run_stegseek(image_path): |
nothing calls this directly
no test coverage detected