begin hex to hue converter

This commit is contained in:
andrzej 2024-11-03 09:35:06 +01:00
parent 52902aa5c8
commit bba3a43bb8
1 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,11 @@ func makeDefaultImageFilters() ImageFilters {
} }
} }
func hexToHSL(string) [3]int {
return [3]int{1, 1, 1}
}
func pickRandomImage(dir string) (string, error) { func pickRandomImage(dir string) (string, error) {
dir = config.ImagesDir + dir dir = config.ImagesDir + dir