当前位置:  编程技术>c/c++/嵌入式

sdl显示一张bmp图片示例

    来源: 互联网  发布时间:2014-10-25

    本文导语:  lesson01.cpp 代码如下:/*This source code copyrighted by Lazy Foo' Productions (2004-2013)and may not be redistributed without written permission.*/ //Include SDL functions and datatypes#include "SDL/SDL.h" int main( int argc, char* args[] ){    //The images    SDL_Surface* hello = NULL...

lesson01.cpp

代码如下:

/*This source code copyrighted by Lazy Foo' Productions (2004-2013)
and may not be redistributed without written permission.*/

//Include SDL functions and datatypes
#include "SDL/SDL.h"

int main( int argc, char* args[] )
{
    //The images
    SDL_Surface* hello = NULL;
    SDL_Surface* screen = NULL;

    //Start SDL
    SDL_Init( SDL_INIT_EVERYTHING );

    //Set up screen
    screen = SDL_SetVideoMode( 640, 480, 32, SDL_SWSURFACE );

    //Load image
    hello = SDL_LoadBMP( "hello.bmp" );

    //Apply image to screen
    SDL_BlitSurface( hello, NULL, screen, NULL );

    //Update Screen
    SDL_Flip( screen );

    //Pause
    SDL_Delay( 2000 );

    //Free the loaded image
    SDL_FreeSurface( hello );

    //Quit SDL
    SDL_Quit();

    return 0;
}


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 如何在应用程序中使用SDL库
  • 关于LINUX下SDL的设置问题
  • SDL 移植到Android问题
  • 休闲游戏 SDL Asylum
  • 飞行游戏 SDL Sopwith
  • 多媒体和游戏开发包 SDL
  • SDL问题
  • 请问在C++中能编写SDL游戏程序吗
  • 求助:sdl+Qt-X11???
  • 请问GTK和SDL能配合使用吗?
  • 散分求助: C+SDL 游戏源码!或相关学习、下载网址!
  • linux+SDL segmentation fault
  • SDL内置了调用OpenGL的函数,但是为什么还有人用SDL+OPENGL编程?
  • 浙ICP备11055608号-3 iis7站长之家
  • 街机游戏 C-Dogs SDL
  • SDL Game Engine
  • 我在交叉编译SDL时.老是出错
  • SDL与ALSA冲突?
  • 关于sdl
  • sdl交叉编译错误


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3