>>3359984I don't know why you'd want to, but here's how I'd do it:
Get a command-line program for reading EXIF-type data out of image files, such as exiftool.
Write a quick program in a scripting language of some sort to go through your image files and output the data you want in CSV (comma-separated values) format. CSV is easy to output and all spreadsheet programs can use it.
Pseudocode will be something like:
foreach (filename) {
createDate = `exiftool -CreateDate $filename`
dimensions = `exiftool -ImageSize $filename`
... etc
print(csv([createDate, dimensions, ...]));
}
If you don't know how to program, then I guess pay a programmer to do it for you?