Skip to main content

Simple (archived) image viewer

Project description

SaltViewer

Very simple image viewer on tkinter.

Why

I need mcomix alternative. Thus this program is developed.

Support these.

  • Many image type
    • pillow
    • svg
  • Animation
    • GIF, PNG
    • duration auto adjustment
  • Trash command
  • Double page mode
  • Full screen mode
  • Vim like keymap (Vim like keyboard shortcut)
    • You can custamize by yourself
  • Repetition key
    • For example 100h means go to next 100 page
  • Open archive files
    • Zip, Rar, 7z, Pdf
  • Trash image or archive
  • Move file wiht key
  • Support nested archive

How to install

pip install salt-viewer

or

yay -S salt-viewer

I use python3.9.3. However it will work on old version greater than python3.5.

This scripts use these pip modules.

  • cairosvg
  • natsort
  • pdf2python
  • pillow
  • py7zr
  • pypdf3
  • rarfile
  • send2trash

And use these packages.

  • unrar(preferred), unar or bsdtar
    • For rarfile
  • poppler
    • For pdf2python

How to Use

Now you can use salt-viewer command.

salt-viewer <image file | archive file>

If you use linux, you should use alias for time saving.

alias sv=salt-viewer

Document

$ salt-viewer --help
usage: salt_viewer.py [-h] [--config CONFIG] [--icon] [--default_config] [--debug] [--fullscreen] [--prev_cache PREV_CACHE] [--next_cache NEXT_CACHE] [--fit_mode FIT_MODE] [--page_order PAGE_ORDER]
                      [--double] [--upscale UPSCALE] [--downscale DOWNSCALE]
                      path

SaltViewer. Simple (archived) image viewer (https://github.com/GuiltyCat/SaltViewer)

positional arguments:
  path                  image file or archive file

optional arguments:
  -h, --help            show this help message and exit
  --config CONFIG       configuration file path. default is /home/miyamoto/.svrc
  --icon                write icon to path
  --default_config      write default configuration to path. salt-viewer --default_config >~/.svrc
  --debug               run as debug mode. All log is printed.
  --fullscreen          run as fullscreen mode
  --prev_cache PREV_CACHE
                        number of previous page cache. Default is 4
  --next_cache NEXT_CACHE
                        number of previous page cache. Default is 10
  --fit_mode FIT_MODE   fit_mode. Both, Raw, Width, Height. Default is Both
  --page_order PAGE_ORDER
                        page order in double page mode. right2left or left2right. Default is right2left
  --double              Double page mode. Default is None.
  --upscale UPSCALE     Upscale algorithm. Nearest, Box, Bilinear, Hamming, Bicubic, Lanczos. Default is Lanczos
  --downscale DOWNSCALE
                        Downscale algorithm. Nearest, Box, Bilinear, Hamming, Bicubic, Lanczos. Default is Lanczos

How to use

The only way to control SaltViewer is key press. You can custamize keymaps by argments or config file.

How to Use SaltViewer in default keymap. But you can custamize via Basic keymaps.

  • Page movements
    • NextPage: h. Support repetition.
    • PrevPage: l. Support repetition.
  • Archive movements
    • NextArchive: j. Not support repetition.
    • PrevArchive: k. Not support repetition.

If you open image file in directory, NextArchive and PrevArchive command is works as NextPage and PrevPage. This command is assumed to use when opening a archive file like zip.

If you open archive and press PrevArchive, the first page of previous archive is opened not the end page.

In nested archive, like zip in zip or rar in rar, SaltViewer automatically open recursively till reaching image file. In other words, SaltViewer automatically open recursively and flatten nested archive in NextArchive. However, in the case of PrevArchive, a first page of first archive in archives is opened.

To move archive in archive, you can use NextArchive and PrevArchive. For example, assume that you open a sample1.zip below.

  • sample1.zip
    • nested_sample1.rar
      • 1.jpg
      • 2.jpg
      • 3.jpg
    • nested_sample2.zip
      • 1.png
      • 2.png
      • 3.png
  • sample2.7z
    • 1.svg

SaltViewer displays 1.jpg in nested_sample1. Then if you type NextPage, 2.jpg in nested_sample1 is opened. If you type NextArchive, SaltViewer open 1.png in nested_sample2.zip Thsn if you type PrevArchive, SaltViewer open 1.jpg in nested_sample2.

You can walk around archive like you are in directory.

If you reach the end of file and type, in this case 3.png in nested_sample2.zip, 1.svg in sample2.7z is opened.

Config file

Support config file. Default reading place is ~/.svrc.

You can write default default config file by running this command option.

salt-viewer --default_config ~/.svrc

Be careful, this command do NOT overwrite a existing file.

Keymap

You can change these keymaps via configuration file.

[Keymap]

DoublePage  = d


# You can use repetition for NextPage and PrevPage.
# For example, 2h means goto next 2 page, type 100h go to next 100 page.
# If you want to reset number, type <Esc>, <Ctrl+[> or simply <[>
NextPage    = h
PrevPage    = l

NextArchive = j
PrevArchive = k

Head        = g
Tail        = G


FitNone     = N
FitWidth    = W
FitHeight   = H
FitBoth     = B

PageOrder   = o


TrashFile   = Delete
MoveFile    = m

Quit        = q
FullScreen  = f
Reload      = r


[MoveToList]

# When you press MoveFile key, then press key registered.
# File will be moved to registered place.

# a = /home/GuiltyCat/images/fantastic
# b = /home/GuiltyCat/images/bravo
# c = /home/GuiltyCat/images/wonderful
#

Setting

You can change these settings via configuration file.

[Setting]

# None, Width, Height or Both
DefaultFitMode = Both
DefaultFullScreen = True


# If you make this value too much, it will occupy too much memory.
DefaultPrevCache = 4
DefaultNextCache = 10

# true or false.
DoublePage = False

# right2left or left2right
PageOrder  = right2left

# Resize algorithms
# | Filter   | Downscaling quality | Upscaling quality | Performance |
# | Nearest  | -                   | -                 | *****       |
# | Box      | *                   | -                 | ****        |
# | Bilinear | *                   | *                 | ***         |
# | Hamming  | **                  | -                 | ***         |
# | Bicubic  | ***                 | ***               | **          |
# | Lanczos  | ****                | ****              | *           |

UpScale     = Lanczos
DownScale   = Lanczos

MoveList

You can set move list.

If you type MoveFile key, a place list is appear. These list contains key and place pair. Then you type a key, opening file will be moved to a place.

[MoveToList]

# When you press MoveFile key, then press key registered.
# File will be moved to registered place.

# a = /home/GuiltyCat/images/fantastic
# b = /home/GuiltyCat/images/bravo
# b = /home/GuiltyCat/images/wonderful
#

Page Cache

SaltViewer's page cache do something strange.

SaltViewer read previous and next pages around a current page. For speed, this preload is running on an other thread.

Preload thread read by one page, or half of self.next_cache pages not unpreloaded number of pages. And automatically deleted out of range pages.

Sometimes getitems may takes too much time and preload cache use used in getitems. Thus preload should be as many as possible.

If you make next_cache and prev_cache too much, it will occupy memory and make your PC freeze. This problem happens when you tried to open high quality files.

Icon

You can create SaltViewer Icon by running.

salt-viewer --icon icon.svg

Icon format is svg only. Suffix is ignored.

Yet Implemented

  • Pre resize and convert
    • Big images takes time to resize and convert to tkImage
    • And do resize in preload
  • Zoom in and Zoom out image
  • Move around images

TODO

  • History
  • Merge move_file and trash because both have very similar code.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

salt-viewer-0.1.8.tar.gz (29.8 kB view details)

Uploaded Source

Built Distribution

salt_viewer-0.1.8-py3-none-any.whl (29.2 kB view details)

Uploaded Python 3

File details

Details for the file salt-viewer-0.1.8.tar.gz.

File metadata

  • Download URL: salt-viewer-0.1.8.tar.gz
  • Upload date:
  • Size: 29.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for salt-viewer-0.1.8.tar.gz
Algorithm Hash digest
SHA256 3fc1956180e0b904db6688b320b6914dfb48f09816372c72b3df2c996797c3a0
MD5 0db8fbd9d62ad1f1cc994b804bb26bbc
BLAKE2b-256 4564a9f121d2c048b7201f64f40ca1088205fa826af60ae9948d230e6cc4ae8c

See more details on using hashes here.

File details

Details for the file salt_viewer-0.1.8-py3-none-any.whl.

File metadata

  • Download URL: salt_viewer-0.1.8-py3-none-any.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.4

File hashes

Hashes for salt_viewer-0.1.8-py3-none-any.whl
Algorithm Hash digest
SHA256 0905391b611efded8201d5b24d0a128cdb2964e560f44e3db42e5b0c90b8bb3d
MD5 8c7ef691e1bdb2b7692eda634d709004
BLAKE2b-256 d8cd0f1a69f57e813388ed164973126112acb0425ef6a071c144eb01bb071f80

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page