<feed xmlns='http://www.w3.org/2005/Atom'>
<title>boss/tehimage.git/src/PNGImage.h, branch PNG-writing</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='https://git.tehbox.org/boss/tehimage.git/'/>
<entry>
<title>feat: Started on PNG writing implementation</title>
<updated>2026-05-06T01:39:47+00:00</updated>
<author>
<name>Dylan</name>
<email>boss@tehbox.org</email>
</author>
<published>2026-05-06T01:39:47+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tehbox.org/boss/tehimage.git/commit/?id=d60976a70e68e1cd312b0e56fe6fbe6c7428cbaa'/>
<id>d60976a70e68e1cd312b0e56fe6fbe6c7428cbaa</id>
<content type='text'>
Currently writes IHDR and IEND chunks correctly
CRC implementation is borrowed from the specification
Writer class now also has a buffer for the CRC calculation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently writes IHDR and IEND chunks correctly
CRC implementation is borrowed from the specification
Writer class now also has a buffer for the CRC calculation
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: Added a writer class</title>
<updated>2026-05-04T06:36:15+00:00</updated>
<author>
<name>Dylan</name>
<email>boss@tehbox.org</email>
</author>
<published>2026-05-04T06:36:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tehbox.org/boss/tehimage.git/commit/?id=a75bdd0e167140eeb4afb091c9dedd84474c8531'/>
<id>a75bdd0e167140eeb4afb091c9dedd84474c8531</id>
<content type='text'>
Also moved both the reader and writer class to the same files, named
files.{cpp,h}
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also moved both the reader and writer class to the same files, named
files.{cpp,h}
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: Added basic zlib compression</title>
<updated>2026-04-01T22:58:24+00:00</updated>
<author>
<name>Dylan</name>
<email>boss@tehbox.org</email>
</author>
<published>2026-04-01T22:58:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tehbox.org/boss/tehimage.git/commit/?id=e9a32a966d49ab798a4c6f24471669fc03adb395'/>
<id>e9a32a966d49ab798a4c6f24471669fc03adb395</id>
<content type='text'>
Currently not incredibly well implemented, but it can handle fixed
codes
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently not incredibly well implemented, but it can handle fixed
codes
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: Added endianness option to reader</title>
<updated>2026-03-18T03:28:27+00:00</updated>
<author>
<name>Dylan</name>
<email>boss@tehbox.org</email>
</author>
<published>2026-03-18T03:28:27+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tehbox.org/boss/tehimage.git/commit/?id=93a78ac64327b53f53952b625c7ce8a11bcc8651'/>
<id>93a78ac64327b53f53952b625c7ce8a11bcc8651</id>
<content type='text'>
The file reader class can now support either endianness to read in,
and will convert to the native endianness
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The file reader class can now support either endianness to read in,
and will convert to the native endianness
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: Added cpp namespace</title>
<updated>2025-10-07T06:31:32+00:00</updated>
<author>
<name>Dylan</name>
<email>boss@tehbox.org</email>
</author>
<published>2025-10-07T05:45:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tehbox.org/boss/tehimage.git/commit/?id=328e2464c81b0dfce623d4fbe9617ef79d6ed3c1'/>
<id>328e2464c81b0dfce623d4fbe9617ef79d6ed3c1</id>
<content type='text'>
All functions and classes are now behind the cpp namespace `TehImage`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
All functions and classes are now behind the cpp namespace `TehImage`
</pre>
</div>
</content>
</entry>
<entry>
<title>fixup: Updated some stuff</title>
<updated>2025-07-24T00:48:21+00:00</updated>
<author>
<name>BossCode45</name>
<email>boss@tehbox.org</email>
</author>
<published>2025-06-27T12:44:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tehbox.org/boss/tehimage.git/commit/?id=3e4cad0bfd36536ffc870d16a6e26aac5049dd0b'/>
<id>3e4cad0bfd36536ffc870d16a6e26aac5049dd0b</id>
<content type='text'>
Mainly just cleaning up code
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Mainly just cleaning up code
</pre>
</div>
</content>
</entry>
<entry>
<title>feat: Made it so that you can now convert between image subclasses</title>
<updated>2025-07-24T00:48:21+00:00</updated>
<author>
<name>BossCode45</name>
<email>boss@tehbox.org</email>
</author>
<published>2025-06-27T05:58:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tehbox.org/boss/tehimage.git/commit/?id=078b4e08fe3bccb7424dac76e158bf8bf48a182d'/>
<id>078b4e08fe3bccb7424dac76e158bf8bf48a182d</id>
<content type='text'>
Also added the bitmap image subclass
note: this is pretty hacky in how it works
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Also added the bitmap image subclass
note: this is pretty hacky in how it works
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial commit</title>
<updated>2025-07-24T00:48:21+00:00</updated>
<author>
<name>BossCode45</name>
<email>boss@tehbox.org</email>
</author>
<published>2025-06-27T02:54:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.tehbox.org/boss/tehimage.git/commit/?id=f953c730af2b90db99f709258c5d5e50fdcaadf7'/>
<id>f953c730af2b90db99f709258c5d5e50fdcaadf7</id>
<content type='text'>
Bringing a lot of stuff over from my maze-reader project in an attempt
to split the image reading code off into a library.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bringing a lot of stuff over from my maze-reader project in an attempt
to split the image reading code off into a library.
</pre>
</div>
</content>
</entry>
</feed>
