我有一个学校项目,需要在C中读取.ppm文件并将其存储在结构中以用于以后的任务。获得第一行并将其分配给struct变量后,如果尝试再次浏览文件,则会收到错误消息。这是我的代码:
#include <stdio.h>
#include <stdlib.h>
typedef struct {
int r, g, b;
} pixels;
typedef struct {
int width, height, maxColors;
char *format; //PPM file format
char *comments;
pixels *pixels;
} PPM;
PPM *getPPM(FILE * f) {
// Check if the file is valid. If not then exit the program
if(f == NULL) {
perror("Cannot open file: ");
exit(1);
}
PPM *pic = malloc(sizeof(PPM));
// If memory allocation fails, exit the program.
if(!pic) {
perror("Unable to allocate memory for structure");
exit(1);
}
// Store the first line of file into the structure
char *fileFormat;
if(fgets(fileFormat, sizeof(fileFormat), f) != NULL) {
// If it is a valid .ppm format, then store it in the structure
if(fileFormat[0] == 'P')
pic->format = fileFormat;
} else {
perror("Unable to read line from the input file");
exit(1);
}
//Errors start here
int c = getc(f);
while(c != EOF)
c = getc(f);
/*
char *comments;
if(fgets(comments, sizeof(comments), f) != NULL) {
printf("%s\n", comments);
} else {
perror("Unable to read line from the input file");
exit(1);
}
*/
fclose(f);
return pic;
}
int main(int argc, char **argv) {
PPM *p = getPPM(fopen(argv[1], "r"));
printf(" PPM format = %s",p->format);
return 0;
}
我尝试从文件中获取单个字符。我尝试使用fgets读取上一行,就像在上一步(对于fileFormat)中所做的一样,但是每次它都会给出段错误。我尝试查看其他示例,但无法解决问题。我已经待了几个小时,所以任何帮助将不胜感激!
内存分配方式是否会出现问题?还是在尝试读取新行时需要提供某种指向文件的指针?我试图在手册页中找到答案,但是我什么都找不到。
P.S。 while(c!= EOF){c = getc(f); },接下来的评论步骤就是看看它是否有效。我想将.ppm文件中的所有信息放入PPM结构中。
答案 0 :(得分:2)
您正在读取一个未初始化的指针,因此这将崩溃。您需要一个缓冲区:
char *fileFormat = malloc(SIZE_OF_FILE_FORMAT);
另外sizeof(fileFormat)
返回指针的大小,在这种情况下,这不是您想要的大小。您需要指针指向的缓冲区大小。