설명

gx_text_out()을 이용하면 문자열을 출력할 수 있습니다.

헤더 gxbdf.h
형태 void gx_text_out( dc_t *dc , int coor_x, int coor_y, char *text)
인수
dc_t *dc   Device Context 포인터
int coor_x   문자열 출력 x 좌표
int coor_y   문자열 출력 y 좌표
char *text   출력할 문자열
반환
-  

주의

문자열 출력 좌표 중 y 좌표는 기준이 문자열의 상단이 아니라 하단입니다.

예제

#include    <stdio.h>
#include    <gx.h>
#include    <gxbdf.h>

int   main( void)
{
    dc_t    *dc_screen;                             // 화면 Device Context

    if  ( gx_init( "/dev/fb"))                      // gxLib 초기화
        gx_print_error( "");                        // 실행 중 에러 내용을 출력
    else
    {
        if  ( !( dc_screen = gx_get_screen_dc()))   // 화면 출력을 위한 스크린 DC 구함
            gx_print_error( "");                    // 실행 중 에러 내용을 출력
        else
        {
            if  ( gx_set_font( "gulim.bdf"))        // 폰트 설정
                gx_print_error("gulim.bdf");
            else
            {
                gx_clear( dc_screen, gx_color( 0, 0, 0, 255));
                dc_screen->pen_color = gx_color( 255, 255, 255, 255);
                gx_text_out( dc_screen, 20 , 40, "안녕하세요. FALINUX 포럼 입니다.");
            }
            gx_release_dc( dc_screen);
        }
        gx_close();
    }
    return   0;
}

지정된 좌표로 문자열이 출력됩니다.