我正在尝试使用指向PNG文件中两个位置的指针来获取PNG图像的高度和重量。
我使用read_image()
读取内存,但我得到的是宽度:115200和高度:115464,但我的图片宽度为:450;身高:451。
这是我的代码:
#include<stdio.h>
#include<stdint.h>
#include<arpa/inet.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <stdlib.h>
void *read_image( const char *filepath );
int main(int argc, char** argv)
{
char *ptr=read_image(argv[1]);
uint32_t *point1=ptr+17;
uint32_t *point2=ptr+21;
uint32_t point1_res=ntohl(*point1);
uint32_t point2_res=ntohl(*point2);
printf("\nWidth: %d",point1_res);
printf("\nHeight: %d",point2_res);
return 0;
}
void *read_image(char *path) {
int fd = open(path, O_RDONLY);
if (fd < 0) {
return NULL;
}
size_t size = 1000;
size_t offset = 0;
size_t res;
char *buff = malloc(size);
while((res = read(fd, buff + offset, 100)) != 0) {
offset += res;
if (offset + 100 > size) {
size *= 2;
buff = realloc(buff, size);
}
}
close(fd);
return buff;
}
我的read_image()
功能没有问题,我在考虑ntohl()
?
答案 0 :(得分:2)
PNG的宽度应为偏移16,高度偏移为20。
所以改变这个
uint32_t *point1=ptr+17;
uint32_t *point2=ptr+21;
是
uint32_t *point1=ptr+16;
uint32_t *point2=ptr+20;