Convert .png
into source code as described by the template used.
By default this tool expects a image.tpl
in the current working directory.
When I want a Zig ⚡ constant of type Image
I might have a template such as this:
pub const {{.Name}} = Image{
.name = "{{.Name}}",
.width = {{.Width}},
.height = {{.Height}},
.data = &.{ {{.BytesString}} },
};