こんにちは、RAWファイル内でjpegを見つけようとしています
各 jpeg の先頭は次のいずれかで始まると言われました
- 0xff 0xd8 0xff 0xe0
- 0xff 0xd8 0xff 0xe1
だから私はこれをやっています:
// open input file
FILE* inptr = fopen("card.raw", "r");
// create an array to hold info read from the memory card
char buffer[512];
int counter=0;
int counter2=0;
while ((fread(buffer, sizeof(char), 512, inptr)!=0))
{
if(buffer[0]==0xff)
{
counter++;
printf("%2d - Found a jpeg!\n", counter);
}
else
{
//Just to test
counter2++;
printf("%2d - Nothing Found!\n", counter2);
}
}
しかし、そこにいくつかの画像があることは確かですが、プログラムは何も見つけていません。ご提案いただきありがとうございます。