Giter Site home page Giter Site logo

qimgv's Introduction

qimgv | Current version: 0.9.1

Qt5 image viewer. Fast, configurable, easy to use. Optional video support.

Screenshots

Main window & panel Folder view Settings window
img1 img2 img3

qimgv v0.6 video overview

Key features:

  • Simple UI

  • Fast

  • Easy to use

  • Fully configurable, including shortcuts

  • High quality scaling

  • Basic image editing: Crop, Rotate and Resize

  • Ability to quickly copy / move images to different folders

  • Experimental video playback via libmpv

  • Ability to run shell scripts

  • A nice dark theme, should look identical on every OS / DE

Default control scheme:

Action Shortcut
Next image Right arrow / MouseWheel
Previous image Left arrow / MouseWheel
Goto first image Home
Goto last image End
Zoom in Ctrl+MouseWheel / Crtl+Up
Zoom out Ctrl+MouseWheel / Crtl+Down
Zoom Hold right mouse btn & move up / down
Fit mode: window 1
Fit mode: width 2
Fit mode: 1:1 (no scaling) 3
Switch fit modes Space
Toggle fullscreen mode DoubleClick / F / F11
Exit fullscreen mode Esc
Show image info I
Crop image X
Resize image R
Rotate left Ctrl+L
Rotate Right Ctrl+R
Open containing directory Ctrl+D
Slideshow mode ~
Shuffle mode S
Quick copy C
Quick move M
Move to trash Delete
Delete file Shift+Delete
Save Ctrl+S
Save As Ctrl+Shift+S
Open Ctrl+O
Settings Ctrl+P
Exit application Esc / Ctrl+Q / Alt+X / MiddleClick

... and more.

Note: you can configure every shortcut by going to Settings > Controls

User interface

The idea is to have a uncluttered, simple and easy to use UI. You can see ui elements only when you need them.

There is a pull-down panel with thumbnails, as well as folder view (accessible by pressing Return).

You can also bring up a context menu by right-clicking an image.

Using quick copy / quick move panels

Bring up the panel with C or M shortcut. You will see 9 destination directories, click them to set them up.

With panel visible, use 1 - 9 keys to copy/move current image to corresponding directory.

When you are done press C or M again to hide the panel.

Running scripts

You can run custom scripts on a current image.

Open Settings > Scripts. Press Add. Here you can choose between a shell command and a shell script.

Example of a command:

convert %file% %file%_.pdf

Example of a shell script file:

#!/bin/bash
gimp "$1"

Note: The $1 argument will be a full file path. Also, the script file must be an executable.

When you've created your script go to Settings > Controls > Add, then select it and assign a shortcut like for any regular action.

HiDPI

If qimgv appears too small / too big on your display, you can override the scale factor. Example:

QT_SCALE_FACTOR="1.5" qimgv /path/to/image.png

You can put it in qimgv.desktop file to make it permanent. Using values less than 1.0 may break some things.

qimgv should also obey the global scale factor set in kde's systemsettings.

High quality scaling

qimgv supports nicer scaling filters when compiled with opencv support (ON by default, might vary depending on your distribution). Filter options are available in Settings > Scaling. Bicubic or bilinear+sharpen is recommended.

APNG support

APNG is supported via third-party qt plugin. (Included in windows qimgv package)

If you are linux user, install the latest QtApng by Skycoder42.

HEIF / HEIC support

Apple's heif format is supported via third-party qt plugin. Included in windows qimgv package.

See github.com/jakar/qt-heif-image-plugin

AVIF support

qimgv can open avif files via third-party qt plugin.

See github.com/novomesk/qt-avif-image-plugin

RAW support

Viewing raw is supported via qtraw plugin. (Included in windows qimgv package)

Installation instructions

GNU+Linux

Arch Linux / Manjaro / etc.:

AUR package:

qimgv-git

Ubuntu / Linux Mint / Pop!_OS / etc.

sudo add-apt-repository ppa:easymodo/qimgv
sudo apt install qimgv

Gentoo:

emerge qimgv

OpenSUSE:

zypper install qimgv

Void linux:

xbps-install -S qimgv

Alpine Linux:

apk add qimgv

Fedora:

sudo dnf install qimgv

If your favorite distro is not included refer to [Manual install] section at the end of this document.

Windows builds

Grab the latest release here.

Windows builds are portable (everything is contained within install folder).

Installer additionally sets up file associations.

Manual install

Note: in order to compile you will need gcc 8 or later!

Install dependencies ( gcc >= 8, git, cmake >= 3.13, qt >= 5.9, exiv2, mpv, opencv (core and imgproc )

Ubuntu & derivatives:

sudo apt install build-essential git cmake qt5-default libmpv-dev gcc-8 g++-8

Optional: libkf5windowsystem-dev

Fedora:

Enable RPMFusion https://rpmfusion.org/Configuration.

It is needed for video playback (mpv), but you also can build without it. See CMake build options at the end.

sudo dnf install git cmake make qt5 qt5-devel gcc-c++ mpv mpv-libs-devel exiv2-devel opencv opencv-devel

Optional: kf5-kwindowsystem

Configure & install

Get sources

git clone https://github.com/easymodo/qimgv.git
cd qimgv && mkdir -p build && cd build

Configure

cmake ../ -DCMAKE_INSTALL_PREFIX=/usr/ -DCMAKE_INSTALL_LIBDIR=lib

Build

make -j`nproc --ignore=1`

Install

sudo make install

Possible build issues

  • If you get errors like "/usr/lib64 exists in filesystem" during install:

add -DCMAKE_INSTALL_LIBDIR:PATH=/usr/lib to cmake command.

  • If you get some errors like "std::filesystem not found":

qimgv needs a compiler with c++17 support - for example gcc 8.0+ (every recent distro has it)

If you have multiple version of gcc installed you might need to specify a which version for cmake to use, for example

CC=gcc-8 CXX=g++-8 cmake [........]

CMake build options

Option Default value Description
VIDEO_SUPPORT ON Enables video playback via mpv
EXIV2 ON Support reading exif tags via exiv2
OPENCV_SUPPORT ON Enables high quality scaling options
KDE_SUPPORT OFF Use some features from kde, like background blur

Usage example:

cmake ../ -DKDE_SUPPORT=ON  -DCMAKE_INSTALL_PREFIX=/usr/

qimgv's People

Contributors

data-man avatar e5ten avatar easymodo avatar geneishouko avatar heroin-moose avatar kamiyaa avatar lgbaldoni avatar maxice8 avatar sevoan avatar tim77 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.