Garry's Mod

Garry's Mod

评价数不足
[E2] PNG Core
   
奖励
收藏
已收藏
取消收藏
素材类型: 插件
插件类型: 工具
插件标签: 建筑, 快乐, 写实
文件大小
发表于
更新日期
11.352 KB
2022 年 1 月 22 日 下午 11:13
2022 年 9 月 5 日 下午 3:19
4 项改动说明 ( 查看 )

订阅以下载
[E2] PNG Core

在 Vurv 的 1 个合集中
Expressive Alpha Testing
23 件物品
描述
Ever wanted to write images in your chips? Maybe for a raytracer, radar scanner? Could even make MS Paint? There's a tool for that!

```
local Png = png(2, 2, _PNG_RGB)
Png:write(255, 0, 0)
Png:write(0, 0, 255)
Png:write(0, 255, 0)
Png:write(255, 255, 255)

assert(Png:done(), "PNG wasn't done writing!")

fileWrite("foo.png", Png:output())
```