package imaging import ( "fmt" "image" "git.fjla.uk/fred.boniface/map-dots/log" ) func Generate(height, width int, style, format string, data []string) image.Image { log.Msg.Debug("Image generation request: " + fmt.Sprint(width) + "x" + fmt.Sprint(height) + " " + format + " " + style) img := createCanvas(width, height) return img }