gpt4 book ai didi

c - 将 jpeg 文件读取到 char* 缓冲区 c

转载 作者:行者123 更新时间:2023-11-30 15:24:20 25 4
gpt4 key购买 nike

我正在尝试将 jpeg 文件读入 char* 缓冲区,以便可以将缓冲区打印为文本。我的问题是我只读了第一行。这是我的代码:

        FILE* file = fopen(filePath, "r");
fseek(file, 0, SEEK_END);
unsigned long fileLen=ftell(file);
fseek(file, 0, SEEK_SET);
char* file_data;
file_data=(char *)malloc((fileLen+1)*sizeof(char));

while (!feof(file)) {
fread(file_data, fileLen, 1, file);
}

fclose(file);
printf("%s\n", file_data);

有什么想法吗?

最佳答案

您需要以二进制模式“rb”打开文件。

如上所述,对二进制 jpeg 数据进行 printf 不会产生有用的结果。

关于c - 将 jpeg 文件读取到 char* 缓冲区 c,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28462587/

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