WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: image viewer application that shows all image in current folder  (Read 7557 times)

Offline manit123

  • Sr. Member
  • ****
  • Posts: 315
I have tried xfi & xzgv .
I wanted one that shows images successively on pressing next button .
I did not get anything like that.
If all image file names are passed as argument to xzgv then it does something similiar .

Offline hiro

  • Hero Member
  • *****
  • Posts: 1229
Re: image viewer application that shows all image in current folder
« Reply #1 on: April 08, 2013, 11:00:12 AM »
qiv

Offline gerald_clark

  • TinyCore Moderator
  • Hero Member
  • *****
  • Posts: 4254
Re: image viewer application that shows all image in current folder
« Reply #2 on: April 08, 2013, 11:07:55 AM »
There are many image viewers in the repo.
You might try one of the gqviews or eog.
Gpicview also works, but all these will require the file names passed as arguments, or selected from the GUI.

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: image viewer application that shows all image in current folder
« Reply #3 on: April 08, 2013, 11:30:55 AM »
Code: [Select]
flpicsee .
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline bmarkus

  • Administrator
  • Hero Member
  • *****
  • Posts: 7183
    • My Community Forum
Re: image viewer application that shows all image in current folder
« Reply #4 on: April 08, 2013, 12:12:38 PM »
A file manager with thumbnail support would be useful too.
Béla
Ham Radio callsign: HA5DI

"Amateur Radio: The First Technology-Based Social Network."

Offline hiro

  • Hero Member
  • *****
  • Posts: 1229
Re: image viewer application that shows all image in current folder
« Reply #5 on: April 08, 2013, 12:39:53 PM »
A file manager with thumbnail support would be useful too.
rox perhaps

Offline bmarkus

  • Administrator
  • Hero Member
  • *****
  • Posts: 7183
    • My Community Forum
Re: image viewer application that shows all image in current folder
« Reply #6 on: April 08, 2013, 12:43:21 PM »
Pcmanfm
Béla
Ham Radio callsign: HA5DI

"Amateur Radio: The First Technology-Based Social Network."

Offline beerstein

  • Hero Member
  • *****
  • Posts: 530
Re: image viewer application that shows all image in current folder
« Reply #7 on: April 09, 2013, 11:03:14 AM »
I use the gThumb. This application has almost everything you want.
t(w)o be(ers) or not t(w)o be(ers) that is the question

Offline coreplayer2

  • Hero Member
  • *****
  • Posts: 3020
Re: image viewer application that shows all image in current folder
« Reply #8 on: April 11, 2013, 02:22:21 AM »
gthumb seems to work quite well, but I noticed it requires a lot of dependencies and doesn't appear to function with the use of keyboard arrow keys though may use other keys for that function??  Not exactly what the OP was looking for, I'm also looking for the same thing :(

Initially, gthumb will not run since the extension is missing a shared library (libexiv2.so.6).  The app looks for libexiv2.so.6 in usr/lib, so a symlink from usr/local/lib/libexiv2.so to usr/lib/libexiv2.so.6  fixes that problem.
« Last Edit: April 11, 2013, 03:39:20 AM by coreplayer2 »

Offline coreplayer2

  • Hero Member
  • *****
  • Posts: 3020
Re: image viewer application that shows all image in current folder
« Reply #9 on: April 11, 2013, 03:00:06 AM »
The most promising app of all is " qiv " thanks hiro, which doesn't exactly throw up a thumbnail image out of box but can be easily configured to accomplish that.  An extension could also be made which includes a desktop file that opens qiv with the desired options

Code: [Select]
qiv -w 150 .*    run from the home directory will bring up a thumbnail view 150 pixels wide, then use the Pg Up & Pg Dn keys or mouse wheel to cycle through available (thumbnail) images

;)
« Last Edit: April 11, 2013, 03:31:46 AM by coreplayer2 »

Offline hiro

  • Hero Member
  • *****
  • Posts: 1229
Re: image viewer application that shows all image in current folder
« Reply #10 on: April 11, 2013, 03:56:26 AM »
in qiv pgup/pgdown goes 5 images forward and backward, you might want to press left or right mouse buttons or space and backspace for single steps. I don't think qiv is useful for thumbnails cause the whole point of these would be to see them all next to each other for easier selection, not supported by qiv.

Offline manit123

  • Sr. Member
  • ****
  • Posts: 315
Re: image viewer application that shows all image in current folder
« Reply #11 on: April 11, 2013, 08:34:58 AM »
Thank you , all .
I read all your suggestions & tried everything to conclude that
(1)qiv , flpicsee is like xzgv if single file argument is passed which is usually the case in window managers (based on freedesktop.org) .
Eg:- I have pcmanfm file manager . There is ~/.local/share/applications/userapp-xzgv.desktop which has 'exec=xzgv %f' inside it , alongwith mimeapps.list pointing to relevant .desktop file. So cannot browse through all pictures in current folder easily. Passing * as argument is not specific because I wanted picture viewer to open file i have double clicked & previous/next to see others.
(2)gqviews with middle click & left click for next/previous is alright.
(3)eog is okay too.
(4)gpicview is lightweight yet all I need . My choice .
(6)Regarding gthumb I was going to post
gthumb: error while loading shared libraries: libexiv2.so.6: cannot open shared object file: No such file or directory
I will try that fix.
As told above I am using pcmanfm with support for multiple tabs unlike rox.
« Last Edit: April 11, 2013, 08:36:39 AM by manit123 »

Offline hiro

  • Hero Member
  • *****
  • Posts: 1229
Re: image viewer application that shows all image in current folder
« Reply #12 on: April 11, 2013, 09:12:13 AM »
you can always run qiv from a script like this:
#!/bin/sh
b=`basename "$*"`
d=`dirname "$*"`
qiv -D "$d/$b" "$d"

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: image viewer application that shows all image in current folder
« Reply #13 on: April 11, 2013, 09:25:03 AM »
In rox i have Run Action for image MIME-types set to <flpicsee "$PWD"> which lets me either cycle through all images in a dir or start slideshow.
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline coreplayer2

  • Hero Member
  • *****
  • Posts: 3020
Re: image viewer application that shows all image in current folder
« Reply #14 on: April 11, 2013, 04:03:47 PM »
hiro
Quote
I don't think qiv is useful for thumbnails cause the whole point of these would be to see them all next to each other for easier selection, not supported by qiv.
I don't think that was the OP's question, which was
Quote
I wanted one that shows images successively on pressing next button .
where qiv -w 150 .*  works great for that