0

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 \)の場合、私はすでにそれを試しましたが、機能しませんでした。

4

2 に答える 2

1

.exeファイルと同じディレクトリに配置するか、プロジェクト設定に応じて他のディレクトリ(おそらくプロジェクトディレクトリ)に配置する必要があります。

于 2013-03-21T04:04:54.137 に答える
0

Visual Studioでは、作業ディレクトリを設定する必要があります

移動:

  • 計画
  • projectName)プロパティ
  • デバッグ
  • 作業ディレクトリ

そして、アセットディレクトリがある場所へのパスを設定します。

デフォルトは$(ProjectDir)で、これは.vcprojファイルが存在するディレクトリです。

于 2013-03-21T04:26:42.300 に答える