Garry's Mod

Garry's Mod

Not enough ratings
[E2] PNG Core
   
Award
Favorite
Favorited
Unfavorite
Content Type: Addon
Addon Type: Tool
Addon Tags: Build, Fun, Realism
File Size
Posted
Updated
11.352 KB
22 Jan, 2022 @ 11:13pm
5 Sep, 2022 @ 3:19pm
4 Change Notes ( view )

Subscribe to download
[E2] PNG Core

In 1 collection by Vurv
Expressive Alpha Testing
23 items
Description
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())
```