From 670f4609e18babac543d693aeabb539764ab7e8c Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Thu, 2 Aug 2018 19:04:41 -0600 Subject: [PATCH] Remove IP of pod --- render.go | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/render.go b/render.go index da4f0fd..0f0b945 100644 --- a/render.go +++ b/render.go @@ -8,17 +8,12 @@ import ( "log" "math" "math/cmplx" - "net" "net/http" "runtime" "strconv" "strings" "sync" - "golang.org/x/image/font" - "golang.org/x/image/font/basicfont" - "golang.org/x/image/math/fixed" - "deadbeef.codes/steven/mandelmapper/palette" ) @@ -121,10 +116,11 @@ func renderTile(w http.ResponseWriter, r *http.Request) { wg.Wait() - ip := GetOutboundIP() - addLabel(img, 20, 30, fmt.Sprintf("rendered by \n%s", ip.String())) - //addLabel(img, 20, 30, fmt.Sprintf("%s/%s/%s.png", components[1], components[2], components[3])) - + /* + ip := GetOutboundIP() + addLabel(img, 20, 30, fmt.Sprintf("rendered by \n%s", ip.String())) + //addLabel(img, 20, 30, fmt.Sprintf("%s/%s/%s.png", components[1], components[2], components[3])) + */ w.Header().Set("Content-Type", "image/png") png.Encode(w, img) } @@ -203,7 +199,7 @@ func linearInterpolation(c1, c2, mu uint32) uint32 { } //Adds a text label to an image - +/* func addLabel(img *image.RGBA, x, y int, label string) { col := color.RGBA{255, 255, 255, 255} point := fixed.Point26_6{fixed.Int26_6(x * 64), fixed.Int26_6(y * 64)} @@ -228,3 +224,4 @@ func GetOutboundIP() net.IP { return localAddr.IP } +*/