aaa

原创

使用 EASYX 载入PNG图并透明背景

2019-10-26 15:36:09 阅读数 27 文章标签: C EASYX PNG 透明

使用 EASYX 载入PNG图并透明背景

EASYX库下载地址
我这里用的是测试版(2019-5-29更新),如下图
aaa
该版本可以插入PNG图片,但不能做到去透明化,如下图:
aaa
虽然我的png图载入了,但是透明部分也会变成黑色,明显没有透明化,下面就是解决这个问题的方法。

#include <conio.h>
#include <graphics.h>

//函数声明
void drawAlpha(IMAGE* picture, int  picture_x, int picture_y); //x为要载入图片的X坐标,y为Y坐标
void main()
{ 
    initgraph(700, 700, NOMINIMIZE); // 初始化绘图环境,EASYX自带,现定义绘图区分辨率700x700
    setbkcolor(WHITE);               //用于设置当前绘图背景色,EASYX自带
    cleardevice();                  //是用当前背景色清空屏幕,并将当前点移至 (0, 0),EASYX自带
    IMAGE img;
    loadimage(&img, _T("B.PNG") );  //用于从文件中读取图像,EASYX自带
    drawAlpha(&img,100,100);     // 载入PNG图并去透明部分
    _getch(); 
}

// 载入PNG图并去透明部分
void drawAlpha(IMAGE* picture, int  picture_x, int picture_y) //x为载入图片的X坐标,y为Y坐标
{

    // 变量初始化
    DWORD *dst = GetImageBuffer();    // GetImageBuffer()函数,用于获取绘图设备的显存指针,EASYX自带
    DWORD *draw = GetImageBuffer(); 
    DWORD *src = GetImageBuffer(picture); //获取picture的显存指针
    int picture_width = picture->getwidth(); //获取picture的宽度,EASYX自带
    int picture_height = picture->getheight(); //获取picture的高度,EASYX自带
    int graphWidth = getwidth();       //获取绘图区的宽度,EASYX自带
    int graphHeight = getheight();     //获取绘图区的高度,EASYX自带
    int dstX = 0;    //在显存里像素的角标

    // 实现透明贴图 公式: Cp=αp*FP+(1-αp)*BP , 贝叶斯定理来进行点颜色的概率计算
    for (int iy = 0; iy < picture_height; iy++)
    {
        for (int ix = 0; ix < picture_width; ix++)
        {
            int srcX = ix + iy * picture_width; //在显存里像素的角标
            int sa = ((src[srcX] & 0xff000000) >> 24); //0xAArrggbb;AA是透明度
            int sr = ((src[srcX] & 0xff0000) >> 16); //获取RGB里的R
            int sg = ((src[srcX] & 0xff00) >> 8);   //G
            int sb = src[srcX] & 0xff;              //B
            if (ix >= 0 && ix <= graphWidth && iy >= 0 && iy <= graphHeight && dstX <= graphWidth * graphHeight)
            {
                dstX = (ix + picture_x) + (iy + picture_y) * graphWidth; //在显存里像素的角标
                int dr = ((dst[dstX] & 0xff0000) >> 16);
                int dg = ((dst[dstX] & 0xff00) >> 8);
                int db = dst[dstX] & 0xff;
                draw[dstX] = ((sr * sa / 255 + dr * (255 - sa) / 255) << 16)  //公式: Cp=αp*FP+(1-αp)*BP  ; αp=sa/255 , FP=sr , BP=dr
                    | ((sg * sa / 255 + dg * (255 - sa) / 255) << 8)         //αp=sa/255 , FP=sg , BP=dg
                    | (sb * sa / 255 + db * (255 - sa) / 255);              //αp=sa/255 , FP=sb , BP=db
            }
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53

成功后的效果图:
aaa

文章最后发布于: 2019-10-26 15:37:07
上一篇:为什么要做安全加固?


下一篇:c语言使用easyX图形库制作打气球小游戏