gpt4 book ai didi

c++ - 如何链接 TextOut() 函数的库?

转载 作者:行者123 更新时间:2023-11-28 07:19:32 24 4
gpt4 key购买 nike

<分区>

我需要使用一些 GDI32 函数,但我需要首先添加库。我尝试将其与链接器选项链接起来,但未显示文本。那么如何通过代码添加库呢?注意:#pragma comment(lib, "gid32.lib") 不可移植,这就是我不能使用它的原因:(

#include <iostream>
#include <string.h>
#include <windows.h>
//#include <WinGdi.h>


using namespace std;

int main()
{
//TextBlink("hello world", 10,20,3,5);
HDC hDC=GetDC(GetConsoleWindow());
SetTextColor(hDC,6);
TextOut(hDC,1,5,"hello world",strlen("hello world"));
cin.get();
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com