LPCTSTR lpszFilename // pointer to font-resource filename
);
Parameters
lpszFilename
Pointer to a null-terminated character string that contains a valid font file filename. The filename may specify either a .FON font resource file, a .FNT raw bitmap font file, a .TTF raw TrueType file, or a .FOT TrueType resource file.
윈도우에 폰트 인스톨하는 방법은 API로 정의 되어 있습니다.
아래와 같습니다.
int AddFontResource(
LPCTSTR lpszFilename // pointer to font-resource filename
);
Parameters
lpszFilename
Pointer to a null-terminated character string that contains a valid font file filename. The filename may specify either a .FON font resource file, a .FNT raw bitmap font file, a .TTF raw TrueType file, or a .FOT TrueType resource file.
이진희 께서 말씀하시기를...
> 델파이에서 폰트를 추가할 수 있는지 알고싶습니다.
> 윈도우에서처럼 폰트를 추가할 수 있는지 할 수 있으면
> 추가할 수 있는 방법을 알려주시면 감사드리겠습니다....