Golang : Simple image viewer with Go-GTK
This is a really simple command line image viewer program written in Golang. Instead of viewing images with Photoshop or web browser, I need this cross-platform command line image viewer to view the images generated by my image processor program.
To get it running.
First, install the gtk
library.
Windows :
Download at http://www.gtk.org/download/windows.php
Linux: (you can use higher version instead of 2.0)
apt-get install libgtk2.0-dev libglib2.0-dev libgtksourceview2.0-dev
or
yum install libgtk2.0-dev libglib2.0-dev libgtksourceview2.0-dev
MacOSX:
Get the latest Homebrew
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
then
brew install gtk
Next :
go get github.com/mattn/go-gtk/gdkpixbuf
go get github.com/mattn/go-gtk/glib
go get github.com/mattn/go-gtk/gtk
Once the gtk
library is installed. Build this code below and execute ./imageviewer <your image file>
- such as ./imageviewer helloworld.png
Here you go!
imageviewer.go
package main
import (
"fmt"
"github.com/mattn/go-gtk/glib"
"github.com/mattn/go-gtk/gtk"
"os"
)
func ErrorCheck(err error) {
if err != nil {
panic(err)
}
}
func main() {
if len(os.Args) != 2 {
fmt.Printf("Usage : %s <image file>\n", os.Args[0])
os.Exit(0)
}
imageFile := os.Args[1]
gtk.Init(nil)
window := gtk.NewWindow(gtk.WINDOW_TOPLEVEL)
window.SetPosition(gtk.WIN_POS_CENTER)
window.SetTitle("Golang GTK Really Primitive Image Viewer")
window.SetIconName("gtk-dialog-info")
window.Connect("destroy", func(ctx *glib.CallbackContext) {
gtk.MainQuit()
}, "Happy coding!")
hbox := gtk.NewHBox(false, 1)
hpaned := gtk.NewHPaned()
hbox.Add(hpaned)
frame1 := gtk.NewFrame(imageFile)
framebox1 := gtk.NewHBox(false, 1)
frame1.Add(framebox1)
hpaned.Pack1(frame1, false, false)
image := gtk.NewImageFromFile(imageFile)
framebox1.Add(image)
window.Add(hbox)
imagePixBuffer := image.GetPixbuf()
horizontalSize := imagePixBuffer.GetWidth()
verticalSize := imagePixBuffer.GetHeight()
window.SetSizeRequest(horizontalSize, verticalSize)
window.ShowAll()
gtk.Main()
}
Sample output:
Reference:
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+20.8k Golang : Convert PNG transparent background image to JPG or JPEG image
+29.4k Golang : How to create new XML file ?
+13.9k Golang : Get current time
+39k Golang : How to iterate over a []string(array)
+11.3k Golang : How to flush a channel before the end of program?
+5.3k Python : Delay with time.sleep() function example
+29.8k Golang : Get and Set User-Agent examples
+7.8k Golang : Get today's weekday name and calculate target day distance example
+6.5k PHP : Shuffle to display different content or advertisement
+20.6k Golang : Saving private and public key to files
+5.7k Golang : ROT32768 (rotate by 0x80) UTF-8 strings example
+10.1k Golang : Print how to use flag for your application example