Go Web伺服器和圖片

來源:互聯網
上載者:User

標籤:blog   http   color   使用   os   strong   ar   div   

Web 服務器

包 http 通過任何實現了 http.Handler 的值來響應 HTTP 要求:

package httptype Handler interface {    ServeHTTP(w ResponseWriter, r *Request)}

在這個例子中,類型 Hello 實現了 `http.Handler`。

訪問 http://localhost:4000/ 會看到來自程式的問候。

注意: 這個例子無法在基於 web 的指南使用者介面運行。為了嘗試編寫 網頁伺服器,可能需要安裝 Go。

package mainimport ("fmt""net/http")type Hello struct{}func (h Hello) ServeHTTP(w http.ResponseWriter,r *http.Request) {fmt.Fprint(w, "Hello!")}func main() {var h Hellohttp.ListenAndServe("localhost:4000", h)}

 

圖片

Package image 定義了 Image 介面:

package imagetype Image interface {    ColorModel() color.Model    Bounds() Rectangle    At(x, y int) color.Color}

(參閱文檔瞭解全部資訊。)

同樣,`color.Color` 和 color.Model 也是介面,但是通常因為直接使用預定義的實現image.RGBA 和 image.RGBAModel 而被忽視了。這些介面和類型由image/color 包定義。

package mainimport ("fmt""image")func main() {m := image.NewRGBA(image.Rect(0, 0, 100, 100))fmt.Println(m.Bounds())fmt.Println(m.At(0, 0).RGBA())}

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.