我在zip文件中存储了多个tiff图像,并想在c中读取其像素值。我对c很陌生,因此请原谅狡猾的代码。我已经知道我有一个char *
了,它包含了tiff文件的内容,但是似乎无法弄清楚现在如何使用libtiff(或类似的东西)来处理它。 libtiff似乎要求我通过TIFFOpen一个文件名来打开。我可以将tiff写入一个临时文件,但是感觉必须有一个更有效的方法。
到目前为止,我有:
#include <stdlib.h>
#include <stdio.h>
#include <zip.h>
#include <string.h>
int main()
{
//Open the ZIP archive
int err = 0;
struct zip *z = zip_open("test.zip", 0, &err);
// Determine how many files are inside and iterate through them
int num_files = zip_get_num_entries(z, 0);
printf("%u\n", num_files);
int i;
for (i=0; i < num_files; i++)
{
const char * filename;
filename = zip_get_name(z, i, 0);
// If the file name ends in .tif
if (strlen(filename) > 4 && !strcmp(filename + strlen(filename) - 4, ".tif"))
{
printf("%s\n", filename);
// Get information about file
struct zip_stat st;
zip_stat_init(&st);
zip_stat(z, name, 0, &st);
printf("%lld\n", st.size);
// Allocate memory for decompressed contents
char *contents;
contents = (char *)malloc(st.size);
// Read the file
struct zip_file *f = zip_fopen(z, filename, 0);
zip_fread(f, contents, st.size);
zip_fclose(f);
// Do something with the contents
// Free memory
free(contents);
}
}
//And close the archive
zip_close(z);
}
编辑:我的问题类似于this one,但那里的公认答案与c ++有关,我不确定如何将其转换为直接c。