赞 | 452 |
VIP | 56 |
好人卡 | 75 |
积分 | 429 |
经验 | 124650 |
最后登录 | 2025-1-11 |
在线时间 | 7625 小时 |
Lv5.捕梦者 (管理员) 老黄鸡
- 梦石
- 0
- 星屑
- 42887
- 在线时间
- 7625 小时
- 注册时间
- 2009-7-6
- 帖子
- 13507
|
加入我们,或者,欢迎回来。
您需要 登录 才可以下载或查看,没有帐号?注册会员
x
本帖最后由 fux2 于 2012-4-22 15:04 编辑
- class Bitmap
- def to_t(filename)
- string = ""
- for j in 0...height
- for i in 0...width
- q=get_pixel(i,j)
- text=sprintf("%02x%02x%02x",q.red.to_i,q.green.to_i,q.blue.to_i)
- string = string + "[backcolor=#"+text+"][color=#"+text+"]█[/color][/backcolor]"
- end
- string = string + "\n"
- end
- a = File.open(filename,"w")
- a << "[size=1]"+string+"[/size]"
- a.close
- end
- end
- temp = Bitmap.new("test.bmp") #图片素材
- temp.to_t("fux.txt") #输出文本
- exit
复制代码 █████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
█████████████████████████████████████████████████████
|
|