An open API service indexing awesome lists of open source software.

https://github.com/fogleman/imview

Simple image viewer written in Go + OpenGL.
https://github.com/fogleman/imview

Last synced: 9 months ago
JSON representation

Simple image viewer written in Go + OpenGL.

Awesome Lists containing this project

README

          

# imview

Simple image viewer written in Go + OpenGL.

## Installation

go get -u github.com/fogleman/imview/cmd/imview

## Usage

imview first.jpg second.png third.bmp

## API

You can show a single image...

```go
import "github.com/fogleman/imview"

var image *image.RGBA
// ...
imview.Show(image)
```

Or multiple images, each in their own window...

```go
import "github.com/fogleman/imview"

var images []*image.RGBA
// ...
imview.Show(images...)
```