如何使用Go在Windows上显示图像?

Go程序在 Windows显示图像的最简单方法是什么?我有一个基于教程的片段:
package main

import (
    "image" 
    "image/color" 
    "image/draw" 
)

func main() {
    m := image.NewRGBA(image.Rect(0,640,480))
    blue := color.RGBA{0,255,255}
    draw.Draw(m,m.Bounds(),&image.Uniform{blue},image.ZP,draw.Src)
}

但是如何显示对象m?我想弹出一个窗口并在那里显示图像,而不是先将其写入文件.

gxui中有一个图像查看器示例,它显示从命令行frags中选择的图像.结果可以在 here看到.这可能是使用go来呈现这个gui的简单方法之一.

请注意gxui是经验性的,未来的更新可能会破坏您的代码.

对于您的请求,代码如下.它会生成一个显示图像的窗口,一个完整的蓝色图像.

package main

import (
    "image"
    "image/color"
    "image/draw"

    "github.com/google/gxui"
    "github.com/google/gxui/drivers/gl"
    "github.com/google/gxui/themes/dark"
)

func appMain(driver gxui.Driver) {
    width,height := 640,480
    m := image.NewRGBA(image.Rect(0,width,height))
    blue := color.RGBA{0,draw.Src)

    // The themes create the content. Currently only a dark theme is offered for GUI elements.
    theme := dark.CreateTheme(driver)
    img := theme.CreateImage()
    window := theme.CreateWindow(width,height,"Image viewer")
    texture := driver.CreateTexture(m,1.0)
    img.SetTexture(texture)
    window.AddChild(img)
    window.OnClose(driver.Terminate)
}

func main() {
    gl.StartDriver(appMain)
}

我确认这适用于Windows和Linux.它可能适用于MacOSX.

如果是用于生产,您可能需要查看更稳定的包.例如,ComputerFellow提到的go-qml或go-qt5

相关文章

(1)when you ping a computer from itsafe,the ping command should return the local IP address. (...
1、点击win菜单,点击设置图标 2、选择系统选项 3、选择应用与程序选项 4、拉到最下方,选择程序与功能...
目前一直直接往Windows 2008 R2 Server中复制文件(暂时还没有搭建ftp服务),突然不能复制了,于是百度...
windows下使用vscode配合xebug调试php脚本 要下载有php_xebug.dll扩展的版本,最新版可能没有这个扩展,p...
在控制面板的程序与功能里启用和关闭windows功能打开,适用于linux的windows子系统
效果演示 推荐一个非常牛的文档网站生成器:docsify 我通过这个工具,成功将码云上的个人学习笔记发布到...