在VS2010下想使用C或C++语言实现简单绘图程序应该建立什么类型的项目?

2024-11-10 14:30:13
推荐回答(2个)
回答1:

graphics.h这个是tc的绘图头文件,vc不行,如果非要用,那就要用别人改写好的

不过没那个必要,如果是控制台绘图的话,那就只需要调用windows的api函数就行了,如果想新建一个窗口,那就选mfc exe的那个,这个是桌面应用程序

给你一段控制台绘图的代码,自己去看

#include 
#include 
#include 
#include 
#include 
extern "C"
{
WINBASEAPI HWND WINAPI GetConsoleWindow();
}
int main(int argc, char *argv[])   //主线程运行结束,辅助线程也结束。
{
HWND hwnd;
HDC hdc;
printf("There are some words in console window!\n在控制台窗口中绘图!\n");
system("Color 3D");
hwnd = GetConsoleWindow();
hdc = GetDC(hwnd);
MoveToEx(hdc,100,100,NULL);
LineTo(hdc, 200, 300);
Rectangle(hdc, 10, 30, 300, 50);
TextOut(hdc, 10, 10, _TEXT("Hello World\nYesNoConcel!"), 20);
ReleaseDC(hwnd, hdc);
getch();
printf("After drawing!\n");
return 0;
}

回答2:

Mfc.可以的