免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4070 | 回复: 7
打印 上一主题 下一主题

问个字符编码和pygame的问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-11-03 09:24 |只看该作者 |倒序浏览
下面这个程序就是显示一个英文"www.chinaunix.net"字符串
请问该怎样显示中文呢?
bow

  1. #!/usr/bin/env python
  2. import os, pygame
  3. from pygame.locals import *
  4. #-*- coding: UTF-8 -*-
  5. def main():
  6. #Initialize Everything
  7.     pygame.init()
  8.     screen = pygame.display.set_mode((300, 35))

  9. #Create The Backgound
  10.     background = pygame.Surface(screen.get_size())
  11.     background = background.convert()
  12.     background.fill((250, 250, 250))

  13. #Put Text On The Background, Centered
  14.     if pygame.font:
  15.         font = pygame.font.Font(None, 36)
  16.         text = font.render("www.chinaunix.net", 1, (10, 10, 10))
  17.         textpos = text.get_rect(centerx=background.get_width()/2)
  18.         background.blit(text, textpos)

  19. #Display The Background
  20.     screen.blit(background, (0, 0))
  21.     pygame.display.flip()

  22. #Main Loop
  23.     while 1:
  24.         for event in pygame.event.get():
  25.             if event.type == QUIT:
  26.                 return

  27. #this calls the 'main' function when this script is executed
  28. if __name__ == '__main__': main()
复制代码

论坛徽章:
0
2 [报告]
发表于 2005-11-03 09:35 |只看该作者
u"论坛"这样行吗?

论坛徽章:
0
3 [报告]
发表于 2005-11-03 10:02 |只看该作者
不行
启动有个警告
# ./papapa.py
sys:1: DeprecationWarning: Non-ASCII character '\xe8' in file ./papapa.py on line 18, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details

论坛徽章:
0
4 [报告]
发表于 2005-11-03 10:37 |只看该作者
在python.cn邮件列表中说pygame中文支持不行。不知道是否是这样。

论坛徽章:
0
5 [报告]
发表于 2005-11-03 10:56 |只看该作者
原来如彼
那我不折腾了
bow

论坛徽章:
0
6 [报告]
发表于 2005-11-03 20:36 |只看该作者
在shebang下,加上如下一行试试:
# -*- coding=cp936 -*-

论坛徽章:
0
7 [报告]
发表于 2005-11-03 23:13 |只看该作者
'shebang'?

论坛徽章:
0
8 [报告]
发表于 2005-12-30 10:14 |只看该作者

不能使用pygame的默认FONT,将汉字FONT作为其字体

不能使用pygame的默认FONT,将汉字FONT作为其字体
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP