tal
tal

Reputation: 960

showing images in go (golang)

I am writing a algorithm in go (golang) that manipulates images and I am wondering, is there a simple way to show images in go (i.e similar to a gui). The best way would not write a file and show it but just show it using some super simple gui function.

Any suggestions?

Upvotes: 3

Views: 1313

Answers (1)

Dmitri Goldring
Dmitri Goldring

Reputation: 4363

It is straightforward to expose a simple web interface using the tools in net/http. Just enough javascript on the client side to create the image request URL and you're in business.

Upvotes: 2

Related Questions