SDL2.0 扣色(png图片重叠,前景色透明)

来源:互联网 发布:淘宝吉姆尼外观零部件 编辑:程序博客网 时间:2024/05/18 11:17

如图,小人的背景是青色的(R:0,G:FF,B:FF),那么我们现在要将小人背景透明化,则现在的color key就是青色的。

 

SDL学习(四) <wbr>Color <wbr>Keying(抠色)

SDL学习(四) <wbr>Color <wbr>Keying(抠色)



#include "stdafx.h"#include "include/SDL.h"#include "SDL2_image/include/SDL_image.h"#pragma comment(lib, "lib/x86/SDL2.lib")#pragma comment(lib, "SDL2_image/lib/x86/SDL2_image.lib")int _tmain(int argc, _TCHAR* argv[]){SDL_Init(SDL_INIT_EVERYTHING);//SDL初始化SDL_Window *Screen = SDL_CreateWindow("Title", 100, 100, 640, 480, SDL_WINDOW_RESIZABLE);//创建窗口SDL_Renderer *render = SDL_CreateRenderer(Screen, -1, 0);//创建渲染器SDL_Surface *bk = IMG_Load("F:\\background.png");//SDL IMAGE扩展库读取tga图片SDL_Surface *foo = IMG_Load("F:\\foo.png");//SDL IMAGE扩展库读取tga图片//Use this function to map an RGB triple to an opaque pixel value for a given pixel format//format:an SDL_PixelFormat structure describing the format of the pixelUint32 colorkey = SDL_MapRGB(foo->format, 0x00, 0xff, 0xff);//用画图工具提取foo.png的背景颜色,发现foo.png的背景色是0x00ffff//surface:the SDL_Surface structure to update//flag:SDL_TRUE to enable color key, SDL_FALSE to disable color key//key:the transparent pixel//Returns 0 on success or a negative error code on failure; call SDL_GetError() for more information.SDL_SetColorKey(foo, 1, colorkey);//Use this function to set the color key (transparent pixel) in a surface.SDL_Texture *texture = SDL_CreateTextureFromSurface(render, bk);//创建纹理SDL_Texture *texture1 = SDL_CreateTextureFromSurface(render, foo);//创建纹理SDL_RenderClear(render);SDL_RenderCopy(render, texture, NULL, NULL);//拷贝数据显示SDL_Rect rect;rect.x = 50;rect.y = 125;rect.w = foo->w;rect.h = foo->h;SDL_RenderCopy(render, texture1, NULL, &rect);//拷贝数据显示SDL_RenderPresent(render);SDL_Event event;while (1){SDL_PollEvent(&event);if (event.type == SDL_QUIT){break;}}SDL_FreeSurface(bk);//是否图片资源SDL_DestroyTexture(texture);//释放纹理SDL_DestroyRenderer(render);//释放渲染器SDL_DestroyWindow(Screen);//销毁窗口SDL_Quit();//退出return 0;}

显示结果:

demo:http://download.csdn.net/detail/sz76211822/9877623

原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 我愿意我是一个更夫 更始帝 淡极始知花更艳 太始 正始 什么让生活更美好作文400字 诚信让生活更美好六年级500字 科技让生活更美好作文500字 运动让生活更美好500字作文 梦想让生活更美好作文400字 梦想生活更美好作文400字 科技让生活更美好600字 诚信生活更美好作文400字 科技让生活更美好400字 诚信让生活更美好作文400字 运动让生活更美好作文400字 读书让生活更美好作文500字 让生活更美好作文400字 诚信让生活更美好400字作文 阅读让生活更美好作文500字 种花让生活更美好作文600字 运动让生活更美好作文600字 美食让生活更美好500字 阅读让生活更美好作文600字 阅读生活更美好作文600字 诚信让生活更美好作文600字 种花让生活更美好作文400字 诚信生活更美好作文600字 微笑让生活更美好400字 梦想让生活更美好400字 花让生活更美好作文600字 微笑让生活更美好作文600字 爱让生活更美好作文600字 微笑生活更美好作文600字 科技让生活更美好作文600字 科技生活更美好作文600字 梦想让生活更美好作文600字 旅行让生活更美好作文600字 运动让生活更美好作文500字 梦想让生活更美好作文500字 诚信让生活更美好作文300字