功 能: 設定圖形縱橫比
用 法: void far setaspectratio(int xasp, int yasp);
程式例:
#include <graphics.h>
#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
int main(void)
{
/* request auto detection */
int gdriver = DETECT, gmode, errorcode;
int xasp, yasp, midx, midy;
/* initialize graphics and local variables */
initgraph(&gdriver, &gmode, "");
/* read result of initialization */
errorcode = graphresult();
if (errorcode != grOk) /* an error occurred */
{
printf("Graphics error: %s\n", grapherrormsg(errorcode));
printf("Press any key to halt:");
getch();
exit(1); /* terminate with an error code */
}
midx = getmaxx() / 2;
midy = getmaxy() / 2;
setcolor(getmaxcolor());
/* get current aspect ratio settings */
getaspectratio(&xasp, &yasp);
/* draw normal circle */
circle(midx, midy, 100);
getch();
/* claer the screen */
cleardevice();
/* adjust the aspect for a wide circle */
setaspectratio(xasp/2, yasp);
circle(midx, midy, 100);
getch();
/* adjust the aspect for a narrow circle */
cleardevice();
setaspectratio(xasp, yasp/2);
circle(midx, midy, 100);
/* clean up */
getch();
closegraph();
return 0;
}
相關詞條
-
setaspectratio
#in #in in
-
getaspectratio
(); setaspectratio(xasp/2, yasp... */ cleardevice(); setaspectratio(xasp, yasp/2...
詞條解釋 程式例 -
DivX Player
軟體使用使用DivX Player播放軟體,我們可以直接來欣賞AVI格式的視頻信息,並且大家可以根據要求,來設定播放畫面是否一...
軟體使用 -
Objective-C函式速查實例手冊
內容介紹Objective-C是一種通用、高級、面向對象的程式語言,是iOS平台以及相關開發的主流程式語言。在TIOBE最新的編...
內容介紹 目錄