Moved from gim to gg for image creation

This commit is contained in:
Raum0x2A
2021-05-18 04:57:05 +00:00
parent 21360acadf
commit 2397ec9aee
17 changed files with 236 additions and 187 deletions

View File

@@ -0,0 +1,21 @@
package nmslib
import (
"fmt"
"testing"
)
func TestCreateBanner(t *testing.T) {
fmt.Printf("\nTesting CreateBanner: ")
rp := "21F2F8EDB94D"
//rp := RndPortal()
fileout := "./test.png"
err := CreateBanner(rp, fileout, 0)
if err != nil {
fmt.Println(err)
}
fmt.Printf("Portal address `%s` rendered as `%s`\n", rp, fileout)
}