altays / glitch-toolz

series of scripts for manipulating files. WIP!
MIT License
0 stars 0 forks source link

JPEG bending #4

Open altays opened 2 months ago

altays commented 2 months ago

quantization tables - 2 // first two bits are marker // next two are length // next is the destination - 00 or 01 // can swap 01 and 00 // rest is the quantization table itself // can be changed to whatever

huffman tables - probably 4 // 2 bits for marker // 2 bits for size // 1 bit for table ID - either 01 or 00 // 16 bits - list bits, can't modifify // remaining bits - can be modified // if table ID is 0, can be between 0F and 00 // if table ID is 1, table ID can be between 00 and FF

image data // breaking into x sized chunks, reordering / repeating

SOS marker // 2 bits for marker // 2 bits for size // 1 bit for number of components // components - selector # and huffman table selection // can swap selector numbers between 01 and number of tables, non repeating // 2 bytes before end - beginning and end of spectral selection

altays commented 2 months ago

need to...