문제

gnuplot 문서에는 글꼴에 대해 다음과 같이 설명되어 있습니다.

    Five basic fonts are supported directly by the gd library. These are
    `tiny` (5x8 pixels), `small` (6x12 pixels), `medium`, (7x13 Bold), 
    `large` (8x16) or `giant` (9x15 pixels).

하지만 내가 하나를 사용하려고 하면:

    gnuplot> set terminal png font tiny

나는 얻다:

    Could not find/open font when opening font tiny, using default

내장된 것처럼 보이는 글꼴을 어떻게 사용합니까?

도움이 되었습니까?

해결책

문제는 어떤 이유로 이러한 글꼴의 경우 위에서 시도한 표준 구문을 사용하지 않는다는 것입니다.

gnuplot> set terminal png font tiny

하지만 대신 다음 다섯 가지 특수 글꼴에 대해 "글꼴"이라는 단어를 삭제합니다.

gnuplot> set terminal png tiny
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top