Roughsketch / imagesize

Quickly probe the size of various image formats without reading the entire file.
MIT License
57 stars 12 forks source link

support for PBM/PGM/PPM #14

Closed akonneker closed 1 year ago

akonneker commented 3 years ago

I recently found myself with a dataset containing PPM files, which seems like an especially simple addition to this library based on the format overview on wikipedia.

Roughsketch commented 3 years ago

It actually seems a bit more complex than other formats since I'd need to handle comments and newline/no newline versions. However it doesn't seem that bad. I don't know when I'll have free time to do it, but will add it to the list of formats at some point most likely.

Thanks for the suggestion.