From b1804f54122c25e8baa664659ed2ff9ec962729d Mon Sep 17 00:00:00 2001 From: "M. Fatih MAR" Date: Sun, 6 Jan 2019 20:09:32 +0000 Subject: [PATCH] Add Hosting Support --- _examples/twopoint/main.go | 30 ++++++++++-------------------- 1 file changed, 10 insertions(+), 20 deletions(-) diff --git a/_examples/twopoint/main.go b/_examples/twopoint/main.go index fc49641..c712438 100644 --- a/_examples/twopoint/main.go +++ b/_examples/twopoint/main.go @@ -1,15 +1,12 @@ package main import ( - "bytes" - "log" - "os" + "net/http" - "github.com/wcharczuk/go-chart" + chart "github.com/wcharczuk/go-chart" ) -func main() { - +func drawChart(res http.ResponseWriter, req *http.Request) { var b float64 b = 1000 @@ -51,18 +48,11 @@ func main() { }, } - buffer := bytes.NewBuffer([]byte{}) - err := graph.Render(chart.PNG, buffer) - if err != nil { - log.Fatal(err) - } - - fo, err := os.Create("output.png") - if err != nil { - panic(err) - } - - if _, err := fo.Write(buffer.Bytes()); err != nil { - panic(err) - } + res.Header().Set("Content-Type", "image/png") + graph.Render(chart.PNG, res) +} + +func main() { + http.HandleFunc("/", drawChart) + http.ListenAndServe(":8080", nil) }