SOILのライブラリのエラーの解決方法が知りたいです。提示画像のようにエラーが発生して下記の通りのエラーの関数に内部コードが提示コードです。おそらくstdbi_load();関数でエラーが起きているものと考えてました。
ハンドルされない例外が 0x00007FFC3C32B7EC (ucrtbased.dll) で発生しました(chapter_2.exe 内): 無効なパラメーターを致命的と見なす関数に無効なパラメーターが渡されました。
unsigned char* SOIL_load_image ( const char *filename, int *width, int *height, int *channels, int force_channels ) { unsigned char *result = stbi_load( filename, width, height, channels, force_channels ); if( result == NULL ) { printf("reuslt == NULL SOIL_load_image\n"); result_string_pointer = stbi_failure_reason(); } else { result_string_pointer = "Image loaded"; } return result; }
//////////////////下
stbi_load();
#ifndef STBI_NO_STDIO unsigned char *stbi_load(char const *filename, int *x, int *y, int *comp, int req_comp) { FILE *f = NULL; fopen_s(f,filename, "rb"); unsigned char *result; if (!f) return epuc("can't fopen", "Unable to open file"); result = stbi_load_from_file(f,x,y,comp,req_comp); fclose(f); return result; }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/08/23 10:02
2020/08/23 11:27