英文:
showing images in go (golang)
问题
我正在使用Go语言编写一个处理图像的算法,我想知道,在Go语言中是否有一种简单的方法来显示图像(类似于图形用户界面)。
最好的方式是不写入文件,而是使用一些超级简单的图形用户界面函数来显示图像。
有什么建议吗?
英文:
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?
答案1
得分: 2
使用net/http
中的工具来创建一个简单的Web界面非常简单。客户端只需要足够的JavaScript来创建图像请求的URL,然后你就可以开始了。
英文:
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论