gpt4 book ai didi

C 程序错误地读取文件

转载 作者:太空宇宙 更新时间:2023-11-04 04:45:16 24 4
gpt4 key购买 nike

我有以下用 c 语言编写的代码。它打开一个 JPEG 文件并根据文件的某些位置从中获取一些数据。 “制造商”和“型号”的输出是正确的,但其他任何东西都不正确。在分配中,当 tagIdentifier 等于 0x8827 时,它需要转到文件中由 tiff.valueofDataItem 的值定位的位置。

来自作业:“如果我们遇到 0x8769 标识符,文件中的其他地方会有一个额外的 Exif block 。即使我们没有读取所有计数标记,我们也可以在此时停止读取,因为 TIFF 格式规定所有标识符必须按排序顺序排列。我们将寻找此 Exif 子 block 标记中特定的偏移集,再次 +12 字节。在那里,我们再重复一次上述过程,以获得有关图片的更具体信息。首先,读入一个新的 count 作为一个 unsigned short。接下来,循环,从文件中读取更多 12 字节的 TIFF 标签。”

它输出正确的制造商和型号,但没有其他效果。是从文件中的错误位置读取还是错误读取整数的问题。此外,它表示 0x829A、0x829D、0x920A 是(2 个 32 位无符号整数的分数)。它说它们“表现得像我们使用字符串一样,但不是读取几个单字节字符,而是读取 2 个无符号整数。我也不知道该怎么做。

  #include <stdio.h>
#include <string.h>
#include <stdlib.h>

struct EXIF{
unsigned short startOfFile;
unsigned short JPEGAPP1marker;
unsigned short lengthOfAPP1block;
unsigned char exitString[4];
unsigned short nullTerminator;
unsigned char endianness[2];
unsigned short versionNumber;
unsigned int offsettoTIFFblock;

};

struct TIFF{
unsigned short tagIdentifier;
unsigned short dataType;
unsigned int numOfDataItems;
unsigned int valueOfDataItem;

};

int main(int argc, char *argv[]){

int i;
FILE *fp;
fp = fopen(argv[1], "rb+");

if(fp == NULL){
perror("ERROR!");
exit(1);
}

struct EXIF exif;
int x = fread(&exif, sizeof(struct EXIF), 1, fp);

unsigned short count;
int y = fread(&count, sizeof(short), 1, fp);

struct TIFF tiff;
int location = 22;
char manufacturer[15];
char cameraModel[50];
unsigned int exifBlock;

for(i = 0; i < count; i++){
fread(&tiff, sizeof(struct TIFF), 1, fp);
if(tiff.tagIdentifier == 0x010F){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(manufacturer, sizeof(char), tiff.numOfDataItems, f$
}
if(tiff.tagIdentifier == 0x0110){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(cameraModel, sizeof(char), tiff.numOfDataItems, fp$

}
if(tiff.tagIdentifier == 0x8769){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
location = tiff.valueOfDataItem + 12;
break;

}
location = location + 12;
fseek(fp, location, SEEK_SET);
}

unsigned short newCount;
int z = fread(&newCount, sizeof(short), 1, fp);
int j;
int width;
int height;
int ISOspeed;
char dateTaken[2];

for(j = 0; j < newCount; j++){
fread(&tiff, sizeof(struct TIFF), 1, fp);
if(tiff.tagIdentifier == 0xA002){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(&width, sizeof(int), tiff.numOfDataItems, fp);

}
if(tiff.tagIdentifier == 0xA003){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(&height, sizeof(int), tiff.numOfDataItems, fp);

}
if(tiff.tagIdentifier == 0x8827){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
location = tiff.valueOfDataItem + 12;
break;

}
location = location + 12;
fseek(fp, location, SEEK_SET);
}
unsigned short newCount;
int z = fread(&newCount, sizeof(short), 1, fp);
int j;
int width;
int height;
int ISOspeed;
char dateTaken[2];
int exposureTime;
int focalLength;
int fstop;


for(j = 0; j < newCount; j++){
fread(&tiff, sizeof(struct TIFF), 1, fp);
if(tiff.tagIdentifier == 0xA002){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(&width, sizeof(int), tiff.numOfDataItems, fp);

}
if(tiff.tagIdentifier == 0xA003){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(&height, sizeof(int), tiff.numOfDataItems, fp);

}
if(tiff.tagIdentifier == 0x8827){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(&ISOspeed, sizeof(int), tiff.numOfDataItems, fp);

}if(tiff.tagIdentifier == 0x829A){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(&exposureTime, sizeof(int), tiff.numOfDataItems, fp);

}if(tiff.tagIdentifier == 0x829D){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(&fstop, sizeof(int), tiff.numOfDataItems, fp);

}
if(tiff.tagIdentifier == 0x920A){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(&focalLength, sizeof(int), tiff.numOfDataItems, fp);

}
if(tiff.tagIdentifier == 0x9003){
fseek(fp, tiff.valueOfDataItem + 12, SEEK_SET);
fread(dateTaken, sizeof(char), tiff.numOfDataItems, fp);
}
location = location + 12;
fseek(fp, location, SEEK_SET);
}


printf("Manufacturer: %s\n", manufacturer);
printf("Model: %s\n", cameraModel);
printf("Width: %d pixels\n", width);
printf("Height: %d pixels\n", height);
printf("Date taken: %s\n", dateTaken);



fclose(fp);
return 0;
}

最佳答案

您的代码有几个问题。如前所述,您假定 EXIF 标记的位置。

另外,您假设结构的布局。编译器可以使成员对齐并丢弃所有内容。

您也没有考虑字节顺序。如果您在小端处理器上运行,您的代码将无法运行。

您需要读取字节数组。对于整数,您需要将指针转换为特定的数组元素,并且如果需要,您需要更正字节顺序。

关于C 程序错误地读取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21744888/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com