aboutsummaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* feat: Added a writer classDylan3 days1-1/+0
| | | | | Also moved both the reader and writer class to the same files, named files.{cpp,h}
* feat: Added support for another BMP headerDylan7 days1-0/+1
| | | | Also improved error handling slightly
* feat: Started implementing BMP readingDylan7 days1-30/+33
| | | | | This is so I can test PNG writing by reading a BMP and writing it to a PNG, effectively the reverse of the PNG reading testing
* feat: Added basic zlib compressionDylan2026-04-021-0/+36
| | | | | Currently not incredibly well implemented, but it can handle fixed codes
* feat: Added cpp namespacev0.0.2Dylan2025-10-071-2/+2
| | | | All functions and classes are now behind the cpp namespace `TehImage`
* feat: Made it so that you can now convert between image subclassesBossCode452025-07-241-6/+11
| | | | | Also added the bitmap image subclass note: this is pretty hacky in how it works
* Initial commitBossCode452025-07-241-0/+24
Bringing a lot of stuff over from my maze-reader project in an attempt to split the image reading code off into a library.