web-services – 在Go(golang)中使用webserver显示gif图像

前端之家收集整理的这篇文章主要介绍了web-services – 在Go(golang)中使用webserver显示gif图像前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我试图用这个简单的Go程序输出一个1×1透明GIF图像(在base64中预先生成),虽然我似乎无法让它工作.有没有人知道如何使用预先生成的base64字符串或磁盘中的文件来执行此操作?

我很感激帮助.

package main

import (
       "net/http"
       "io"
       "encoding/base64"
)

const base64GifPixel = "R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs="

func respHandler(res http.ResponseWriter,req *http.Request) {
    res.Header().Set("Content-Type","image/gif")
    output,_ := base64.StdEncoding.DecodeString(base64GifPixel)
    io.WriteString(res,string(output))
}


func main() {
    http.HandleFunc("/",respHandler)
    http.ListenAndServe(":8086",nil)
}

解决方法

似乎在这里正常工作:
$wget -q -O file.gif http://localhost:8086
$file file.gif
file.gif: GIF image data,version 89a,1 x 1

你怎么验证它不工作?如果你使用网络浏览器访问它,我想它会显示一个带有透明像素的空白页面,这有点难以发现. 原文链接:https://www.f2er.com/html/227060.html

猜你在找的HTML相关文章