在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?

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.