Writes a LifeHash image to a PNG file.
Port of write_image() from lifehash.cpp lines 174-186 and PNGWriter class from png-writer.hpp.
write_image()
The LifeHash image to write
The output filename
import { makeFromUtf8 } from "@bcts/lifehash";const image = makeFromUtf8("Hello");writeImage(image, "Hello.png"); Copy
import { makeFromUtf8 } from "@bcts/lifehash";const image = makeFromUtf8("Hello");writeImage(image, "Hello.png");
Writes a LifeHash image to a PNG file.
Port of
write_image()from lifehash.cpp lines 174-186 and PNGWriter class from png-writer.hpp.