1

使用 stbi_set_flip_vertically_on_load 函数时出现未解决的符号错误。

我已将#include <stb_image.h> 文件添加为标题,我还需要做其他事情吗?

stb_image - v2.19

#include <stb_image.h>

stbi_set_flip_vertically_on_load(true); // this gives unresolved symbol error though
4

1 回答 1

1

您还需要编译 stb_image。这应该有效:

#define STB_IMAGE_IMPLEMENTATION
#include <stb_image.h>
于 2020-07-12T05:24:53.643 回答