MCPcopy Index your code
hub / github.com/LCBOWER33/StegoScan / run_exiftool

Function run_exiftool

StegoScan.py:863–869  ·  view source on GitHub ↗

Run exiftool and capture output.

(image_path)

Source from the content-addressed store, hash-verified

861
862# TODO Add in the following test
863def 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
872def run_stegseek(image_path):

Callers

nothing calls this directly

Calls 3

run_silent_commandFunction · 0.85
prGreenFunction · 0.85
prRedFunction · 0.85

Tested by

no test coverage detected