- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 C++ 和 SDL 的新手;我正在尝试使用此处的说明添加新的 SDL 扩展库:http://www.lazyfoo.net/SDL_tutorials/lesson03/windows/devcpp/index.php
但是我得到了这些错误:
3 C:\Documents and Settings\Edmund\My Documents\C++\myprojects\SDL\SDLevent.cpp SDL/SDL_image.h: 没有这样的文件或目录。
C:\Documents and Settings\Edmund\My Documents\C++\myprojects\SDL\SDLevent.cpp 在函数`SDL_Surface* load_image(std::string)'中:
28 C:\Documents and Settings\Edmund\My Documents\C++\myprojects\SDL\SDLevent.cpp `IMG_Load' undeclared(先用这个函数)
然后是一堆不合格的id。
这是我的代码:
#include "SDL/SDL.h"
#include "SDL/SDL_image.h"
#include <string>
//Screen attributes
const int SCREEN_WIDTH = 640;
const int SCREEN_HEIGHT = 480;
const int SCREEN_BPP = 32;
//The surfaces
SDL_Surface *image = NULL;
SDL_Surface *screen = NULL;
//The event structure that will be used
SDL_Event event;
SDL_Surface *load_image( std::string filename )
{
//The image that's loaded
SDL_Surface* loadedImage = NULL;
//The optimized image that will be used
SDL_Surface* optimizedImage = NULL;
//Load the image
loadedImage = IMG_Load( filename.c_str() );
//If the image loaded
if( loadedImage != NULL )
{
//Create an optimized image
optimizedImage = SDL_DisplayFormat( loadedImage );
//Free the old image
SDL_FreeSurface( loadedImage );
}
//Return the optimized image
return optimizedImage;
}
void apply_surface( int x, int y, SDL_Surface* source, SDL_Surface* destination )
{
//Temporary rectangle to hold the offsets
SDL_Rect offset;
//Get the offsets
offset.x = x;
offset.y = y;
//Blit the surface
SDL_BlitSurface( source, NULL, destination, &offset );
}
bool init()
{
//Initialize all SDL subsystems
if( SDL_Init( SDL_INIT_EVERYTHING ) == -1 )
{
return false;
}
//Set up the screen
screen = SDL_SetVideoMode( SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, SDL_SWSURFACE );
//If there was an error in setting up the screen
if( screen == NULL )
{
return false;
}
//Set the window caption
SDL_WM_SetCaption( "Event test", NULL );
//If everything initialized fine
return true;
}
bool load_files()
{
//Load the image
image = load_image( "astyle.bmp" );
//If there was an error in loading the image
if( image == NULL )
{
return false;
}
//If everything loaded fine
return true;
}
void clean_up()
{
//Free the image
SDL_FreeSurface( image );
//Quit SDL
SDL_Quit();
}
//Initialize
if( init() == false )
{
return 1;
}
//Load the files
if( load_files() == false )
{
return 1;
}
//Apply the surface to the screen
apply_surface( 0, 0, image, screen );
//Update the screen
if( SDL_Flip( screen ) == -1 )
{
return 1;
}
//While the user hasn't quit
while( quit == false )
{
//While there's an event to handle
while( SDL_PollEvent( &event ) )
{
//If the user has Xed out the window
if( event.type == SDL_QUIT )
{
//Quit the program
quit = true;
}
}
}
//Free the surface and quit SDL
clean_up();
return 0;
}
它与教程中的内容几乎相同,因此代码应该没有问题。我完全按照有关 Lazy foo 的说明进行操作,我已将所有文件放在正确的位置并链接到它们,所以我不知道自己做错了什么。
最佳答案
您的编译器找不到 SDL/SDL_image.h
header ,这会导致所有这些“未声明”错误。
也许你跳过了Step 2在链接的说明中。
关于c++ - 为什么 SDL_image 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3949480/
我正在尝试安装 SDL-image library对于 Haskell,是一组同名原始 C 库的绑定(bind)。我已经构建并安装了 SDL 库及其相应的 Haskell 包,并将文件从 SDL 图像
在修复了各种其他 SDL 错误之后,(包括 SDL 本身和 SDL_Image)我写了这段无错误的代码: #include #include #include #include using n
我有一个 sdl2 程序,它在我的机器上运行良好(win xp 32 位)。当我将它发送给我的 friend (win 10 64 位)时,程序显示 SetRenderDrawColor 并在几秒钟后
我正在尝试使用 SDL 起步。 SDL 本身运行良好,我得到了基本的 Hello World 设置。然而,尝试使用 SDL_image 却让我头疼不已。我当前的代码(如下)在第 17 行给出错误“Im
我正在尝试使用 SDL 加载 png 文件。我已遵循所有指示。 SDL2_image.dll 和 SDL2.dll 与可执行文件位于同一文件夹中。与其他 dll 一样; libjpeg-9.dll、l
我正在将 PNG 文件(带有一些透明的地方)加载到我的 SDL 应用程序中。 谷歌搜索如何做到这一点为我提供了以下代码示例: SDL_Surface *LoadImage(std::string fi
我正在关注如何在 C++ 中进行 SDL2 编程的教程。我在 window 上。我的电脑是64位的。出于兼容性原因,我正在使用 32 位库,并且因为我正在遵循一个教程 [指示使用 32 位版本]。 我
我目前正在使用 Code::Blocks IDE、c++、opengl 和 SDL 制作游戏 - 如果您愿意的话,我遇到了严重的障碍。我正在使用 SDL_image 为纹理加载这些 jpg 图像,但它
我是 C++ 和 SDL 的新手;我正在尝试使用此处的说明添加新的 SDL 扩展库:http://www.lazyfoo.net/SDL_tutorials/lesson03/windows/devc
如何将 SDL_image 保存到图像文件..我有一个使用 SDL IMG_Load() 方法加载的图像。我现在想将它保存在文件中??我不想在表面上显示它..只想加载图像操作它的像素并将其保存回来..
我在 Windows 7 下的 cygwin 上的 gcc 3 中链接 SDL_image 时遇到问题。 我收到以下错误: /usr/lib/gcc/i686-pc-cygwin/4.3.4/../.
我正在学习教程,我认为我做的一切都是正确的,但它继续说“不支持的图像格式”。 代码: SDL_Texture *LoadTexture(string filePath, SDL_Renderer *r
我可以使用 SDL_image 毫无问题地以 (png) 格式加载图像,并且可以完美地显示它。不过,我想做的是将图像从完全透明逐渐淡入完全不透明。我看过一些教程提到 SDL_SetAlpha但这是用于
我正在尝试使用颜色键控在 SDL 中实现透明度。虽然它可以处理 BMP 文件,但不能处理 PNG 文件。 这是我的代码: #include #include int main(int argc,
我正在使用 C++11 中的一个简单的 SDL2 应用程序,我很好奇将所需的库与我的应用程序捆绑在一起。现在,我需要在机器上安装 SDL2、SDL_image 和 libpng。但是,如果用户没有安装
我遵循了本指南 http://lazyfoo.net/SDL_tutorials/lesson03/windows/codeblocks/index.php设置 sdl 图像扩展,但现在当我使用#in
我的生成文件 - all: g++ main.cpp -I/usr/local/include -L/usr/local/lib -lSDL2 -lSDL_image 我正在使用的代码取自教程
我正在使用 IMG_Load() 加载 png 文件,但它根本不起作用。 LoadedImage = IMG_Load(filename.c_str());在这句话之后,loadedImage 仍然是
我有以下脚本: gcc -I /Library/Frameworks/SDL2.framework/Headers \ -F /Library/Frameworks/ -framework S
我必须使用 SDL2 和 SLD2_image 在 C 中创建 OCR。 在 macOS 上一切正常。但是,在 Linux 上运行我的程序时,我在保存 PNG 文件时遇到了段错误。 我尝试更新我使用的
我是一名优秀的程序员,十分优秀!