Tiny Core Linux

Tiny Core Extensions => TCE Talk => Topic started by: manit123 on April 08, 2013, 10:57:28 AM

Title: image viewer application that shows all image in current folder
Post by: manit123 on April 08, 2013, 10:57:28 AM
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 .
Title: Re: image viewer application that shows all image in current folder
Post by: hiro on April 08, 2013, 11:00:12 AM
qiv
Title: Re: image viewer application that shows all image in current folder
Post by: gerald_clark 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.
Title: Re: image viewer application that shows all image in current folder
Post by: tinypoodle on April 08, 2013, 11:30:55 AM
Code: [Select]
flpicsee .
Title: Re: image viewer application that shows all image in current folder
Post by: bmarkus on April 08, 2013, 12:12:38 PM
A file manager with thumbnail support would be useful too.
Title: Re: image viewer application that shows all image in current folder
Post by: hiro on April 08, 2013, 12:39:53 PM
A file manager with thumbnail support would be useful too.
rox perhaps
Title: Re: image viewer application that shows all image in current folder
Post by: bmarkus on April 08, 2013, 12:43:21 PM
Pcmanfm
Title: Re: image viewer application that shows all image in current folder
Post by: beerstein on April 09, 2013, 11:03:14 AM
I use the gThumb. This application has almost everything you want.
Title: Re: image viewer application that shows all image in current folder
Post by: coreplayer2 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.
Title: Re: image viewer application that shows all image in current folder
Post by: coreplayer2 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

;)
Title: Re: image viewer application that shows all image in current folder
Post by: hiro 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.
Title: Re: image viewer application that shows all image in current folder
Post by: manit123 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.
Title: Re: image viewer application that shows all image in current folder
Post by: hiro 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"
Title: Re: image viewer application that shows all image in current folder
Post by: tinypoodle 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.
Title: Re: image viewer application that shows all image in current folder
Post by: coreplayer2 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
Title: Re: image viewer application that shows all image in current folder
Post by: hiro on April 11, 2013, 07:23:20 PM
Sometimes it's better to be complete in case other people with slightly different demands find this thread via google.
Title: Re: image viewer application that shows all image in current folder
Post by: beroje on April 11, 2013, 08:34:22 PM
(http://i49.tinypic.com/2zszk1h.png)
Title: Re: image viewer application that shows all image in current folder
Post by: manit123 on April 15, 2013, 07:24:42 AM
(1)to tiny poodle , flpicsee "$PWD" does not work in exec option of .desktop file .
(2)to hiro , your qiv script is nice . Pointing to that script in exec option of .desktop file gives what I wanted . I can press m + - to see picture in different sizes.
(3)Tried gthumb - it shows directory in tree on left & files (that can be filtered) on right pane .
Title: Re: image viewer application that shows all image in current folder
Post by: manit123 on April 29, 2013, 06:31:21 AM
has anyone noticed that in gpicview if the image is viewed in original resolution then horizontal &  vertical scrollbars do not work ?
Title: Re: image viewer application that shows all image in current folder
Post by: hiro on April 29, 2013, 12:46:37 PM
btw, I prefer to run qiv in fullscreen with -f. there you can also drag the mouse to move/scroll the image comfortably, click left and right buttons to go to previous/next image and m toggles between scaling to fit the screen and original size.
Title: Re: image viewer application that shows all image in current folder
Post by: manit123 on April 30, 2013, 08:06:46 AM
Now I like qiv & qview1 . Especially qview1 updates the window as new files get added in current folder . Also files can be renamed using 'ctrl+r' .
Title: Re: image viewer application that shows all image in current folder
Post by: manit123 on April 30, 2013, 08:08:31 AM
If anyone concurs with me about gpicview problem . Then we can report this to developer . i Don't know how ?