当前位置: 首页 > news >正文

网站关键词更新临汾网络推广

网站关键词更新,临汾网络推广,企业门户网站案例,织梦装修网站模板加载BMP 1.使用SDL_init初始化SDL库 2.使用SDL_CreateWindow创建一个窗口 3.使用SDL_GetWindowSurface获取创建窗口的surface 4.使用SDL_LoadBMP加载一张BMP图片 5.使用SDL_BlitSurface将加载的bmp surface拷贝到窗口的surface 6.使用SDL_UpdateWindowSurface更新到窗口 …

加载BMP

1.使用SDL_init初始化SDL库

2.使用SDL_CreateWindow创建一个窗口

3.使用SDL_GetWindowSurface获取创建窗口的surface

4.使用SDL_LoadBMP加载一张BMP图片

5.使用SDL_BlitSurface将加载的bmp surface拷贝到窗口的surface

6.使用SDL_UpdateWindowSurface更新到窗口

7.使用SDL_FreeSurface释放申请的空间

8.使用SDL_DestroyWindow销毁窗口

9.使用SDL_Quit释放SDL库

以下时完整代码

#include <iostream>
#include <sdl.h>const int SCREEN_WIDTH = 640;
const int  SCREEN_HEIGHT = 480;SDL_Window* gWindow = nullptr;
SDL_Surface* gScreenSurface = nullptr;
SDL_Surface* gHelloWorld = nullptr;bool init()
{bool success = true;if (SDL_Init(SDL_INIT_VIDEO) < 0){printf("SDL could not initialize!SDL Error:%s\n", SDL_GetError());success = false;}else{//create windowgWindow = SDL_CreateWindow("SDL tutorial", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_SHOWN);if (gWindow == nullptr){printf("window could not created!SDL_Error:%s\n", SDL_GetError());success = false;}else{//get window surfacegScreenSurface = SDL_GetWindowSurface(gWindow);}}return success;
}bool loadMedia()
{//loading success flagbool success = true;//load splash imagegHelloWorld = SDL_LoadBMP("../BMP2.bmp");if (gWindow == nullptr){printf("unable to load image!SDL_ERROR%s\n",SDL_GetError());success = false;}return success;
}void close()
{SDL_FreeSurface(gHelloWorld);gHelloWorld = NULL;SDL_DestroyWindow(gWindow);gWindow = NULL;SDL_Quit();}int main(int argc, char* args[])
{if (!init()){printf("failed to initialize!\n");}else{//load mediaif (!loadMedia()){printf("failed to load media!\n");}else{SDL_BlitSurface(gHelloWorld, nullptr, gScreenSurface, nullptr);//update the surfaceSDL_UpdateWindowSurface(gWindow);SDL_Event e;bool quit = false;while (quit == false){while (SDL_PollEvent(&e)){if (e.type == SDL_QUIT)quit = true;}}}}close();return 0;
}

加载PNG

由于默认的SDL库只能加载BMP格式的图片,如果需要加载png等其他格式的图片,需要下载一个扩展库SDL_image​​​​​​

这里我们下载SDL2_image-devel-2.6.3-VC.zipSDL_image​​​​​​

 加载步骤与加载BMP步骤差不多,这里需要注意以下几点

1.需要使用IMG_Init初始化iamge库

2. 使用IMG_Load加载png图片(之前使用SDL_LoadBMP加载BMP)

3.使用IMG_Quit释放image库

以下是完整代码

#include <iostream>
#include <sdl.h>
#include <sdl_image.h>
#include <string>using namespace std;const int SCREEN_WIDTH = 640;
const int  SCREEN_HEIGHT = 480;SDL_Surface* loadSurface(std::string path);SDL_Window* gWindow = nullptr;SDL_Surface* gScreenSurface = nullptr;SDL_Surface* gPNGSurface = nullptr;bool init()
{bool success = true;//initialize SDLif (SDL_Init(SDL_INIT_VIDEO) < 0){printf("SDL_ERROR:%s\n", SDL_GetError());success = false;}else{//create windowgWindow = SDL_CreateWindow("SDL load PNG", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_SHOWN );if (gWindow == nullptr){printf("SDL_ERROR:%s\n", SDL_GetError());success = false;}else{//initialize PNG loadingint imgFlag = IMG_INIT_PNG;if (!(IMG_Init(imgFlag) & imgFlag)){printf("SDL_IMAGE could not initialize!SDL_IMAGE ERROR: %s\n", IMG_GetError());success = false;}else{//get window surfacegScreenSurface = SDL_GetWindowSurface(gWindow);}}}return success;
}SDL_Surface* loadSurface(string path)
{SDL_Surface* optimizedSurface = nullptr;//load image at specified pathSDL_Surface* loadSurface = IMG_Load(path.c_str());if (loadSurface == nullptr){printf("load image error: %s\n", IMG_GetError());}else{//convert surface to screen formatoptimizedSurface = SDL_ConvertSurface(loadSurface, gScreenSurface->format, 0);if (optimizedSurface == nullptr){printf("unable to optimize image: %s\n", SDL_GetError());}//get rid of old loaded surfaceSDL_FreeSurface(loadSurface);}return optimizedSurface;
}bool loadMedia()
{//Loading success flagbool success = true;//Load PNG surfacegPNGSurface = loadSurface("../picture/loaded.png");if (gPNGSurface == NULL){printf("Failed to load PNG image!\n");success = false;}return success;
}void close()
{SDL_FreeSurface(gPNGSurface);gPNGSurface = nullptr;SDL_DestroyWindow(gWindow);gWindow = nullptr;IMG_Quit();SDL_Quit();
}int main(int argc, char* argv[])
{if (!init()){printf("Failed to initialize!\n");}else{//Load mediaif (!loadMedia()){printf("Failed to load media!\n");}else{//Main loop flagbool quit = false;//Event handlerSDL_Event e;//While application is runningwhile (!quit){//Handle events on queuewhile (SDL_PollEvent(&e) != 0){//User requests quitif (e.type == SDL_QUIT){quit = true;}}//Apply the PNG imageSDL_BlitSurface(gPNGSurface, NULL, gScreenSurface, NULL);//Update the surfaceSDL_UpdateWindowSurface(gWindow);}}}//Free resources and close SDLclose();return 0;
}

http://www.hkea.cn/news/312628/

相关文章:

  • 个人做网站靠什么盈利免费网站建设模板
  • 网站开发 打标签aso优化怎么做
  • 教育校园网站建设方案seo每天一贴
  • 怎么看网站的建设时间推广公司品牌
  • 营销型网站有什么特点英语培训机构
  • 学院网站的系统建设方式宝鸡网站seo
  • 网站客户端怎么做的百度一下了你就知道官网
  • 有什么推广方法优化大师电脑版官方
  • 自己做网站的服务器上海网站建设公司排名
  • 跳蛋塞逼做多的视频网站百度广告联盟官网
  • 房地产网站开发文档企业查询
  • 做emu对网站有什么要求十大免费无代码开发软件
  • 扬州专业做网站做关键词优化
  • 宿州网站建设贰聚思诚信网站服务器
  • 用照片做模板下载网站好百度爱采购官方网站
  • 微网站建设套餐网络营销是做什么的
  • 徐州有哪些做网站苏州网站建设费用
  • 统一企业信息管理系统网站直通车怎么开效果最佳
  • 武汉外贸网站建设公司外链相册
  • java做网站的权限管理seo描述是什么
  • 招聘网最新招聘信息网武汉seo计费管理
  • 直播软件开发源码重庆seo顾问
  • 公司网站如何做宣传百度视频推广怎么收费
  • 淄博市 网站建设报价郑州seo外包阿亮
  • 网络服务商是指什么网站优化排名工具
  • 网站优化的分析比较好的品牌策划公司有哪些
  • 国外比较好的资源网站电商运营推广是做什么的
  • 佛山房地产网站建设seo实战培训王乃用
  • 如何做可以赚钱的网站关键词如何快速排名
  • 深圳品牌做网站公司有哪些百度app推广