How can I access the JPEG COM segment in iOS?

There are many levels of marker segment in JPEG, I want to read and write marker marker segment - COM (read / write). This requires low level programming. How can I access it in iOS?

Links -

+4
source share
1 answer

IOS allows you to open files. Read the JPEG file. Find the stream for the COM token. Read the length. Read the data. This is the main [objective] programming of C.

+1
source

Source: https://habr.com/ru/post/1675319/


All Articles