This commit is contained in:
Jay
2019-12-10 14:15:27 +00:00
commit 369e8d3f6e
12 changed files with 349 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
package calendar
import (
"image"
"github.com/fogleman/gg"
)
// Draw -
func Draw(w, h int) *image.Image {
dc := gg.NewContext(w, h)
_ = dc
return nil
}