Generates a PNG buffer from a LifeHash image without writing to disk.
The LifeHash image to encode
A Buffer containing the PNG data
import { makeFromUtf8 } from "@bcts/lifehash";const image = makeFromUtf8("Hello");const pngBuffer = generatePNG(image); Copy
import { makeFromUtf8 } from "@bcts/lifehash";const image = makeFromUtf8("Hello");const pngBuffer = generatePNG(image);
Generates a PNG buffer from a LifeHash image without writing to disk.