Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rufiorogue/imageviewer
A basic fast image viewer for Linux for everyday use, mimicking Windows 7 photo viewer. Uses Qt5
https://github.com/rufiorogue/imageviewer
Last synced: 26 days ago
JSON representation
A basic fast image viewer for Linux for everyday use, mimicking Windows 7 photo viewer. Uses Qt5
- Host: GitHub
- URL: https://github.com/rufiorogue/imageviewer
- Owner: rufiorogue
- Created: 2017-01-06T09:33:48.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-08T21:18:42.000Z (about 8 years ago)
- Last Synced: 2024-11-05T18:15:53.410Z (2 months ago)
- Language: C++
- Homepage:
- Size: 640 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Image Viewer
A basic fast image viewer for Linux for everyday use.
It tries to mimic usability of default image viewer of Windows 7.
![application screenshot](https://github.com/aldn/ImageViewer/raw/master/Doc/app_screenshot.png "Application Screenshot")## Features
* walk through directory of image files
* view animated GIFs
* zoom 1:1, zoom to fit toggleable, arbitrary zoom
* basic editing such as rotation
* slideshow
* fullscreen mode## Dependencies
Qt 5## Building
##### 1. Clone
```shell
git clone https://github.com/aldn/ImageViewer.git
```
##### 2. Generate Makefile
```shell
cd ImageViewer
mkdir Build
cd Build
qmake ..
```
##### 3. Build
```shell
make
```## Running
##### Usage
```shell
./ImageViewer [IMAGE_FILE]
```##### Note
It tries to use icons from the current icon theme. Most of the time Qt should properly detect platform icon theme. However if running outside of desktop environment session (such as Gnome, KDE or XFCE), environment variable XDG_CURRENT_DESKTOP should be set manually, otherwise most of the icons might be missing.
E.g. put something like this to startup script:
```shell
export XDG_CURRENT_DESKTOP=GNOME
```
To use selected GNOME icon theme.