Further compression and png work.
This commit is contained in:
parent
318b481ccc
commit
9c8faa534b
34 changed files with 1164 additions and 203 deletions
|
@ -3,9 +3,18 @@
|
|||
#include <string>
|
||||
#include <sstream>
|
||||
|
||||
|
||||
namespace Png
|
||||
{
|
||||
inline unsigned char getHighBitCheck()
|
||||
{
|
||||
return 0x89;
|
||||
}
|
||||
|
||||
inline std::vector<unsigned char> getSignature()
|
||||
{
|
||||
return {13, 10, 26, 10};
|
||||
}
|
||||
|
||||
struct IHDRChunk
|
||||
{
|
||||
unsigned width{0};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue