赞 | 0 |
VIP | 0 |
好人卡 | 0 |
积分 | 1 |
经验 | 845 |
最后登录 | 2023-6-17 |
在线时间 | 12 小时 |
Lv1.梦旅人 随缘
- 梦石
- 0
- 星屑
- 55
- 在线时间
- 12 小时
- 注册时间
- 2007-12-16
- 帖子
- 671
|
dir = Win32API.new('kernel32','GetSystemDirectory','p,l','l')
dir_str = " " * 256
dir.call(dir_str,255)
dir_str = dir_str.split('system')[0]
font_name = "fzcqjw.ttf"
font_chn_name = "方正粗倩简体"
if FileTest.exist?(font_name)
copy = Win32API.new('kernel32',"CopyFileA",'p,p,l','')
copy.call(font_name, "#{dir_str}Fonts/#{font_name}",0)
font = Win32API.new('gdi32','AddFontResourceA','p','l')
sendmsg = Win32API.new('user32','SendMessageA','l,l,l,l','l')
unless Font.exist?(font_chn_name)
font.call(font_name)
sendmsg.call(65535,29,0,0)
retry
end
end
http://rpg.blue/web/htm/news650.htm 系统信息:本贴由楼主认可为正确答案,66RPG感谢您的热情解答~ |
|