Warning: file_get_contents(https://whois.pconline.com.cn/jsLabel.jsp?ip=127.0.0.1) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 503 Service Temporarily Unavailable in D:\wwwroot\huidong\wwwroot\function.inc.php on line 884
以 EasyX 为例,调用 WinAPI 设置透明窗体,全屏窗体 - huidong

huidong

首页 | 会员登录 | 关于争取 2022 寒假做出汇东网 Ver3.0.0 !
搜索文章


    //窗口大小为屏幕大小
    initgraph(GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN));

    //设置全屏
    HWND hwnd = GetHWnd();
    SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) - WS_CAPTION);
    SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN), SWP_SHOWWINDOW);
    setorigin(GetSystemMetrics(SM_CXSCREEN) / 2, GetSystemMetrics(SM_CYSCREEN) / 2);// 这将使绘画原点位于屏幕中心,我建议不要这么做,因为这可能带来不必要的麻烦。
    setbkcolor(RGB(0, 0, 0));
    cleardevice();

    //设置透明(设置透明需设置全屏)
    LONG lWindowLong = GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED;
    ::SetWindowLong(hwnd, GWL_EXSTYLE, lWindowLong);
    SetLayeredWindowAttributes(hwnd, RGB(0, 0, 0), 0, LWA_COLORKEY);

实测可用,原文:https://tieba.baidu.com/p/3369859529


如下是一个透明输出安卓图标的示例代码,同样来自上面的原文链接,但是做了少许的修改:

#include <easyx.h>
#include <conio.h>

float PI = 3.1415926;

void main()
{

    initgraph(GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN));

    //设置全屏
    HWND hwnd = GetHWnd();
    SetWindowLong(hwnd, GWL_STYLE, GetWindowLong(hwnd, GWL_STYLE) - WS_CAPTION);
    SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, GetSystemMetrics(SM_CXSCREEN), GetSystemMetrics(SM_CYSCREEN), SWP_SHOWWINDOW);
    setorigin(GetSystemMetrics(SM_CXSCREEN) / 2, GetSystemMetrics(SM_CYSCREEN) / 2);
    setbkcolor(RGB(0, 0, 0));
    cleardevice();

    //设置透明(设置透明需设置全屏)
    LONG lWindowLong = GetWindowLong(hwnd, GWL_EXSTYLE) | WS_EX_LAYERED;
    ::SetWindowLong(hwnd, GWL_EXSTYLE, lWindowLong);
    SetLayeredWindowAttributes(hwnd, RGB(0, 0, 0), 0, LWA_COLORKEY);


    // 设置绘图样式
    setlinecolor(WHITE); // 设置线条颜色为白色
    setlinestyle(PS_SOLID | PS_ENDCAP_FLAT, 10); // 设置线条样式为宽度 10 的实线,端点是平的
    setfillcolor(0x24c097); // 设置填充颜色为绿色

    // 画身体
    fillroundrect(-75, -111, 75, 39, 36, 36);

    // 画头
    fillpie(-75, -166, 75, -30, 0, PI); // 脸
    circle(-31, -131, 3); // 右眼
    circle(31, -131, 3); // 左眼

    // 画天线
    fillellipse(-52, -181, -38, -167); // 右天线
    line(-50, -169, -41, -156);
    line(-38, -177, -28, -162);
    fillellipse(52, -181, 38, -167); // 左天线
    line(50, -169, 41, -156);
    line(38, -177, 28, -162);
    // 用绿色擦掉天线部分多余的线
    setlinecolor(0x24c097); // 设置线条颜色为绿色
    setlinestyle(PS_SOLID | PS_ENDCAP_ROUND, 5); // 设置线条样式为宽度 5 的实线,端点为圆形
    line(-44, -174, -23, -142); // 画右天线内部的绿线
    line(44, -174, 23, -142); // 画左天线内部的绿线
    setlinecolor(WHITE); // 恢复线条颜色为白色
    setlinestyle(PS_SOLID | PS_ENDCAP_FLAT, 10); // 恢复线条样式为宽度 10 的实线,端点是平的

    // 画胳膊
    fillroundrect(-117, -99, -75, 7, 42, 42); // 右胳膊
    fillroundrect(117, -99, 75, 7, 42, 42); // 左胳膊

    // 画腿
    fillpie(-50, 49, -8, 91, PI, PI * 2); // 右腿
    line(-50, 40, -50, 70);
    line(-8, 40, -8, 70);
    solidroundrect(-45, 0, -13, 86, 32, 32);
    fillpie(50, 49, 8, 91, PI, PI * 2); // 左腿
    line(50, 40, 50, 70);
    line(8, 40, 8, 70);
    solidroundrect(45, 0, 13, 86, 32, 32);

    // 画字母 A
    arc(-185, 132, -144, 173, PI / 2, PI * 3 / 2);
    line(-165, 132, -135, 132);
    line(-165, 173, -154, 173);
    line(-140, 127, -140, 178);

    // 画字母 N
    arc(-118, 131, -78, 171, 0, PI);
    line(-118, 151, -118, 178);
    line(-78, 151, -78, 178);

    // 画字母 D
    arc(-57, 132, -16, 173, PI * 3 / 2, PI / 2);
    line(-60, 132, -37, 132);
    line(-60, 173, -37, 173);

    // 画字母 R
    arc(14, 132, 40, 158, PI * 3 / 2, PI / 2);
    arc(-2, 158, 38, 198, 0, PI / 2);
    line(1, 132, 27, 132);
    line(1, 158, 27, 158);

    // 画字母 O
    circle(81, 152, 21);

    // 画字母 I
    line(124, 127, 124, 178);

    // 画字母 D
    arc(144, 132, 185, 173, PI * 3 / 2, PI / 2);
    line(141, 132, 164, 132);
    line(141, 173, 164, 173);

    // 按任意键退出
    _getch();
    closegraph();
}



效果:

图片.png






返回首页


Copyright (C) 2018-2024 huidong