79528054

Date: 2025-03-22 20:13:49
Score: 0.5
Natty:
Report link

ExifTool can output in Json format with the -j argument:

[string]$imageProperties = exiftool -j test.jpg

Then convert the Json string to an object:

$ImagePropertiesJson = ConvertFrom-Json $imageProperties

Then you can easily access any property of the jpeg file:

$ImagePropertiesJson.ImageHeight

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Dan Murphy