我想用stb_image加載圖像。我從https://github.com/nothings/stb下載stb_image.h
。當我運行代碼:問題用stb_image加載圖像
string file="image.png";
int width,height,components;
unsigned char *imageData = stbi_load(file.c_str(),
&width, &height, &components, STBI_rgb_alpha);
我得到以下錯誤:
Main.cpp:(.text+0xa14): undefined reference to `stbi_load'
Main.cpp:(.text+0xb74): undefined reference to `stbi_image_free'
你應該真的閱讀你正在使用的庫的文檔。只是'#include「stb_image.h」'是不夠的... – derhass
那麼什麼是足夠的? –