SFML 2.0で画像を表示しようとすると、画像が見つかりません。Visual Studio Express C++2010を使用しています。これが私のコードです。
#include "stdafx.h"
using namespace std;
int main()
{
// Create the main window
sf::RenderWindow window(sf::VideoMode(800, 600), "SFML window");
// Load a sprite to display
sf::Texture texture;
if (!texture.loadFromFile("image.png"))
{
cout << "Could not find file image.png" << endl;
system("PAUSE");
}
sf::Sprite sprite(texture);
// Create a graphical text to display
// Load a music to play
// Start the game loop
while (window.isOpen())
{
// Process events
sf::Event event;
while (window.pollEvent(event))
{
// Close window : exit
if (event.type == sf::Event::Closed)
window.close();
}
// Clear screen
window.clear();
// Draw the sprite
window.draw(sprite);
// Draw the string
// Update the window
window.display();
}
return EXIT_SUCCESS;
}
しかし、画像ディレクトリを特定の「C:\ Users \ Chase \ Documents \ Visual Studio 2010 \ Projects \ Boonce \ image.png」に変更すると、機能します。特定の情報なしで表示するには、image.pngをどこに配置する必要がありますか。私はそれが何であるかわからない作業ディレクトリを人々が言うのを聞いた。それがプロジェクトフォルダ(Projects \ Boonce \)の場合、私はすでにそれを試しましたが、機能しませんでした。