tl;dr
从 card.raw 中识别 JPEG 的数据,将其恢复出来。
思考
- 打开存储卡card.raw 读取其中数据(使用fopen()
- 识别 JPEG 的header
注意:JPEG 也只是一系列bytes,只是每一个 JPEG 都有相同的header
前三个byte:是 0xff 0xd8 0xff
下一个:0xe0—到–0xef
读取时每一个 block 是 512 bytes - 打开一个新的 JPEG 文件,将文件名保存为 ???.jpeg(1~n)
- 写入这一个block 的 512 byte 直到发现新的文件头出现
- 检查是否已经读取到文件的末尾
注意
- 读取文件的fread()
fread(data,size,number,inptr)
data: pointer to such truct that will contain the bytes you are reading
size: size of each element to read
sizeof
number: number of elements to read
inptr: FILE * to read from - 识别 JPEG:
if (buffer[0] == 0xff &&buffer[1] == 0xd8 && buffer[2] == 0xff && (buffer[3] & 0xf0) == 0xe0)
- 按照需要存储新图片,使用函数 sprintf(filename,”%03i.jpg”,2)
filename: char array to store the result tring
002.jpg
FILE *image = fopen(filename,”w”) - 使用 fwrite 函数写入内容
fwrite(data,size,number,outptr)
fwrite(buffer, sizeof(buffer), 1, image) - 使用的数据结构
定义了 typedef uint8_t BYTE,使用了 BYTE buffer[512]
参考文档
Code Solution
1 |
|