* pyglet 을 이용하는 간단한 Python 소스 (소스파일명: testpyglet.py)
window = pyglet.window.Window()
label = pyglet.text.Label('Hello, world',
font_name='Times New Roman',
font_size=36,
x=window.width//2, y=window.height//2,
anchor_x='center', anchor_y='center')
@window.event
def on_draw():
window.clear()
label.draw()
pyglet.app.run()
실행 결과:
* pyglet 을 이용하여 한글을 출력하는 Python 소스 (소스파일명: testpyglet2.py)
(소스파일을 저장시 반드시 UTF-8 인코딩으로 저장해야 한다)
import pyglet
window = pyglet.window.Window()
label = pyglet.text.Label(u'Hello, world! 안녕하세요?',
font_name='맑은 명조',
font_size=24,
x=window.width//2, y=window.height//2,
anchor_x='center', anchor_y='center')
@window.event
def on_draw():
window.clear()
label.draw()
pyglet.app.run()
실행 결과:
'프로그래밍 > Python' 카테고리의 다른 글
감마함수(gamma function)의 값을 (유효수자 15자리 까지 정밀하게) 계산하는 Python 언어 소스 (0) | 2012.12.12 |
---|---|
Python 2.6, 2.6 및 3.2 로 복소수의 포맷(format) 출력 (0) | 2012.12.07 |
Python 3.2 를 이용한 간단한 수학식 계산하기 (0) | 2011.08.18 |
Python 2.7 을 이용한 간단한 수학식 계산하기 (0) | 2011.08.18 |
조립제법(Horner의 방법) 예제 2 for Python (0) | 2010.04.12 |