forked from BestImageViewer/geeqie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
556 lines (432 loc) · 20.3 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
###################################################################
## Geeqie x.x ##
## ##
## Copyright (C) 2008 - 2016 The Geeqie Team ##
## Copyright (C) 1999 - 2006 John Ellis. ##
## ##
## Use at your own risk! ##
## ##
## This software released under the GNU General Public License. ##
## Please read the COPYING file for more information. ##
###################################################################
This is Geeqie, a successor of GQview.
Geeqie has been forked from GQview project, because it was not possible to
contact GQview author and the only maintainer. Geeqie projects goal is to move
the development forward and also integrate the existing patches.
Geeqie is currently considered stable. Please report any crash or odd behavior
to the [mailing list](https://lists.sourceforge.net/lists/listinfo/geeqie-devel)
and/or to [Github](https://github.com/BestImageViewer/geeqie/issues)
For more info see: http://www.geeqie.org/
Please send any question or suggestions to [email protected] or
open an issue on Github (https://github.com/BestImageViewer/geeqie/issues)
# README contents:
* Requirements
* Notes and changes for this release
* Installation
* Description / Features
* Documentation (keyboard shortcuts)
* Editor command macros
* Additional comments
* Translation status
* Credits
## Requirements
Required libraries:
GTK+ 3.00
www.gtk.org
enabled by default
disable with configure option: --disable-gtk3
or
GTK+ 2.20
disabled by default when GTK+3 libraries are found.
enable with configure option: --disable-gtk3
optional items map display and GPU acceleration are not available
with GTK2
Note: GTK+3 is still somehow experimental. It is needed for some
features but we have several complains about the GTK+3 usability.
So if you need a stable version, you are advised to compile it
with GTK+2. If you want to play with the cool new features, use
GTK+3.
Optional libraries:
lcms2 2.0
or
lcms 1.14
www.littlecms.com
for color management support
enabled by default
disable with configure option: --disable-lcms
exiv2 0.11
www.exiv2.org
for enhanced exif support
enabled by default
disable with configure option: --disable-exiv2
lirc
www.lirc.org
for remote control support
enabled by default
disable with configure option: --disable-lirc
libchamplain-gtk 0.12
libchamplain 0.12
libclutter 1.0
wiki.gnome.org/Projects/libchamplain
for map display
disabled by default
enable with configure option: --enable-map
enabling will also enable GPU acceleration
libclutter 1.0
www.clutter-project.org
for GPU acceleration (a check-box on Preferences/Image must also be ticked)
disabled by default
enable with configure option: --enable-gpu-accel
explicitly disabling will also disable the map feature
lua 5.1
www.lua.org
support for lua scripting
enabled by default
disable with configure option: --disable-lua
## Notes and changes for this release [section:release_notes]
See NEWS file.
Code hackers:
If you plan on making any major changes to the code that will be offered for
inclusion to the main source, please contact us first - so that we can avoid
duplication of effort.
The Geeqie Team
Known bugs:
See the Geeqie Bug Tracker at TODO file.
## Installation
Compilation: ./autogen.sh ; make
General install: make install
Removal: make uninstall
## Description / Features
Geeqie is a graphics file viewer. Basic features:
- Single click image viewing / navigation.
- Zoom functions.
- Thumbnails, with optional caching and .xvpics support.
- Multiple file selection for move, copy, delete, rename, drag and drop.
- Drag and drop.
- Slideshow.
- Full screen.
- Ability to open images in external editors (configurable).
- Collections.
- Comparison of images to find duplicates by name, size, date,
dimensions, or image content similarity.
- Rotation invariant detection
- EXIF support.
- support for stereoscopic images
- input: side-by-side (JPS) and MPO format
- output: single image, anaglyph, SBS, mirror, SBS half size (3DTV)
## Documentation (brief) [section:documentation]
This sections lists default hotkeys. Most of the hotkeys can be redefined in the
Preferences dialog.
Keyboard commands:
[PageDown], [Keypad PageDown] next image
[PageUp], [Keypad PageUp] previous image
[Home], [Keypad Home] first image in list
[End], [Keypad End] last image in list
[Tab] tab completion in path entry window
[Escape] cancel completion in path entry window
Keyboard commands valid when image has focus (image has black rectangle)
arrow keys, [Keypad arrows] pan image
[Shift] - arrow keys pan image faster
[Space] next image
[Backspace] , B previous image
File menu related:
[Ctrl] - N new window
C new empty collection
O open collection
D open a Find Duplicates window
[Shift]- P open Print dialog
[Ctrl] - F new folder
[Ctrl] - C copy file
[Ctrl] - M move file
[Ctrl] - R rename file
[Ctrl] - D, [Delete] delete file
[Ctrl] - W close window
[Ctrl] - Q exit Geeqie
Edit menu related:
1 .. 6 toggle mark
[Ctrl] - 1..6 select mark
[Ctrl] - A select all files
[Ctrl] - [Shift] - A unselect all files
[Ctrl] - P display image properties window
[Ctrl] - O configure Options
] rotate image clockwise
[ rotate image counterclockwise
[Shift] - R rotate image 180 degrees
[Shift] - M mirror image (horizontal)
[Shift] - F flip image (vertical)
[Shift] - G grayscale image
View menu related:
+, =, [Keypad +] zoom in
-, [Keypad -] zoom out
Z, [Keypad /] zoom to original size
X, [Keypad *] zoom to fit within window
W zoom to fit width of window
H zoom to fit height of window
T toggle thumbnails in list view
[Ctrl] - L display files as list view
[Ctrl] - I display files as icon view
[Ctrl] - T toggle tree view of directories
R refresh list
L (Un)float file selection area
[ctrl] - H (Un)hide file selection area
[Ctrl] - K toggle sidebar with EXIF or keywords
[Ctrl] - E show EXIF window
[Ctrl] - S toggle sort manager sidebar
F, V toggle full screen
S toggle slide show
P (Un)pause slideshow
[Ctrl] - V display current image in new window
Collection windows:
arrows, [Keypad arrows] move selection
[Shift] + arrows select multiple images
[Ctrl] + arrows move without changing selection
[Space] select only image with focus
[Ctrl] + [Space] toggle selection of image with focus
[Home], [Keypad Home] move focus to top of images
[End], [Keypad End] move focus to end of images
(shift and ctrl work with Home, End, PageUp/Down as with arrows)
[Ctrl] - A select all images
[Ctrl] - [Shift] - A unselect all images
[Delete], [Keypad Delete] remove selected images from collection
(does not delete file)
[Ctrl] - L add images from main window file list
[Ctrl] - T toggle display of icon filename text
N sort collection by name
D sort collection by date
B sort collection by size (bytes)
P sort collection by location (path)
I (*) sort collection by name numerically
(file1 file10 file2 -> file1 file2 file10)
[Enter], [Keypad Enter] view image with focus in main window
V view image with focus in new window
S save collection
[Ctrl] - S save collection as...
A append to collection...
[Shift] - P print selected images...
[Ctrl] - C copy selected files...
[Ctrl] - M move selected files...
[Ctrl] - R rename selected files...
[Ctrl] - D delete selected files
[Ctrl] - P display image properties window
[Ctrl] - W close window
Find Duplicates window:
[Ctrl] - A select all images
[Ctrl] - [Shift] - A unselect all images
1 select group 1 duplicates
2 select group 2 duplicates
[Ctrl] - L add images from main window file list
C add selected images to new collection
[Delete], [Keypad Delete] remove selected images from list
[Ctrl] - [Delete] clear window
[Enter], [Keypad Enter] view image with focus in main window
V view image with focus in new window
[Ctrl] - 1 .. 0 open selected image(s) in editor
[Ctrl] - C copy selected files...
[Ctrl] - M move selected files...
[Ctrl] - R rename selected files...
[Ctrl] - D delete selected files
[Ctrl] - P display image properties window
[Ctrl] - W close window
Pan View:
[Ctrl] - F, / show search bar
[Ctrl] - G repeat previous search
(*) This is a compile time option enabled when strverscmp is found.
Mouse image control:
Button 1 view next image
Button 2 view previous image
Button 3 context menu
Button 1 drag scroll/pan image
Button 2 drag initiate drag and drop
Wheel up/down change to previous/next image
Wheel up/down + [Shift] scroll image up/down
Wheel up/down + [Control] zoom image in/out
## Editor command macros [section:editors]
Editors are configured via standard desktop files.
## Overlay Info [section:overlay]
Overlay info format string syntax is: %tag[:max_length][:extra]%
%name% Filename of the picture.
%collection% Name of the collection
%number% Current number of image in the list
%total% Total number of images
%date% File date
%size% File size
%width% Image width
%height% Image height
%res% Image resolution
%keywords% Image keywords from metadata
%comment% Image comment from metadata
%lua/file.lua/% Lua functionality
To access exif data use the exif name:
%Exif.Photo.DateTimeOriginal% Date of the original shot
Pre-formatted exif data is also available:
formatted.Camera Camera and sofware name
formatted.DateTime Image Date
formatted.ShutterSpeed Shutter speed in seconds (ie. 1/60s)
formatted.Aperture Aperture (ie. f5.6)
formatted.ExposureBias Exposure bias (ie. +0.3)
formatted.ISOSpeedRating ISO sensitivity (ie. 100)
formatted.FocalLength Focal length
formatted.FocalLength35mmFilm Focal length 35mm
formatted.SubjectDistance Subject distance
formatted.Flash Flash
formatted.Resolution Resolution
formatted.ColorProfile Color profile
formatted.GPSPosition GPS position
formatted.GPSAltitude GPS altitude
You can limit the length of displayed data using :number notation:
%formatted.Camera:20% will truncate the displayed data to 20 characters and
will add 3 dots at the end to denote the truncation.
If two or more variables are connected with the |-sign, it prints available
variables with a separator:
%formatted.ShutterSpeed%|%formatted.ISOSpeedRating%|%formatted.FocalLength%
could show:
"1/20s - 400 - 80 mm"
or
"1/200 - 80 mm" if there's no ISO information in the Exif data.
If a line is empty, it is removed. This allows one to add lines that totally
disappear when no data is available.
Extra string uses special character '*' to mark the position of the data. If
no '*' is present, then extra string is just appended to data. Any "\n" is
replaced by a newline on display. Pango mark up is accepted in left and right
parts. If data is empty, nothing will be displayed.
Examples:
"%name:<i>*</i>\n%" -> name is displayed in italics ended with a newline
"%size:\n%" -> size is displayed with a newline at end
"%formatted.ISOSpeedRating:ISO *%" -> ie. "ISO 100"
"%collection: Collection <b>*</b>\n%" -> display collection name in bold prefixed by
"Collection " and a newline is appended
## Credits [section:credits]
Translations:
Grzegorz Kowal <[email protected]>
Zbigniew Chyla <[email protected]>
Emil Nowak <[email protected]>
Wit Wilinski <[email protected]>
Tomasz Golinski <[email protected]>
for Polish translation
Christopher R. Gabriel <[email protected]>
Di Maggio Salvatore <[email protected]>
Costantino <inverness1ATvirgilio.it>
for Italian translation
Sandokan <[email protected]>
Ivan Priesol <[email protected]>
Mgr. Peter Tuharsky <[email protected]>
for Slovak translation
Rodrigo Sancho Senosiain <[email protected]>
Ariel Fermani <[email protected]>
for Spanish translation
Laurent Monin <[email protected]>
Eric Lassauge <[email protected]>
Jean-Pierre Pedron <[email protected]>
Pascal Bleser <[email protected]>
Nicolas Boos <[email protected]>
Nicolas Bonifas <[email protected]>
for French translation
Fâtih Demir <[email protected]>
for Turkish translation
Kam Tik <[email protected]>
Abel Cheung <[email protected]>
S.J. Luo <[email protected]>
Levin <[email protected]>
for Traditional Chinese (Big5) translation
Junichi Uekawa <[email protected]>
Oleg Andrjushenko <[email protected]>
Michael Bravo <[email protected]>
Sergey Pinaev <[email protected]>
for Russian translation
Guilherme M. Schroeder <[email protected]>
Vitor Fernandes <[email protected]>
Herval Ribeiro de Azevêdo <[email protected]>
for Brazilian Portuguese translation
Shingo Akagaki <[email protected]>
Yuuki Ninomiya <[email protected]>
Sato Satoru <[email protected]>
Takeshi AIHANA <[email protected]>
for Japanese translation
Matthias Warkus <[email protected]>
Thomas Klausner <[email protected]>
Danny Milosavljevic <[email protected]>
Ronny Steiner <[email protected]>
Klaus Ethgen <[email protected]>
for German translation
Matej Erman <[email protected]>
for Slovene translation
MÃtyÃs Tibor <[email protected]>
Koblinger Egmont <[email protected]>
Sári Gábor <[email protected]>
for Hungarian translation
Wu Yulun <[email protected]>
Charles Wang <[email protected]>
for simplified Chinese translation
H.J.Visser <[email protected]>
Tino Meinen <[email protected]>
for Dutch translation
Lauri Nurmi <[email protected]>
for Finnish translation
Ilmar Kerm <[email protected]>
for Estonian translation
Volodymyr M. Lisivka <[email protected]>
for Ukrainian translation
Birger Langkjer <[email protected]>
for Danish translation
Torgeir Ness Sundli <[email protected]>
for Norwegian translation
Jan Raska <[email protected]>
Michal Bukovjan <[email protected]>
for Czech translation
Phanumas Thanyaboon <[email protected]>
for Thai translation
Harald Ersch <[email protected]>
for Romanian translation
pclouds <[email protected]>
for Vietnamese translation
Tedi Heriyanto <[email protected]>
for Indonesian translation
Vladimir Petrov <[email protected]>
for Bulgarian translation
Hans Öfverbeck <[email protected]>
for Swedish translation
Youssef Assad <[email protected]>
for Arabic translation
catux.org <[email protected]>
for Catalan translation
Hyun-Jin Moon <[email protected]
for Korean translation
Pavel Piatruk <[email protected]>
for Belarusian translation
Piarres Beobide <[email protected]>
for Basque translation
Antonio C. Codazzi <[email protected]>
for Esperanto translation
Nikos Papadopoulos
for Greek translation
Fixes, additions, and patches:
Eric Swalens
Quy Tonthat
for initial Exif support.
Daniel M. German <dmgerman at uvic.ca>
for Canon raw image support.
Lars Ellenberg
for Fujifilm raw image support.
Diederen Damien <[email protected]>
for .xvpics thumbnail reading support.
Nick Rusnov <[email protected]>
Ryan Murray <[email protected]>
for man page.
Martin Pool <[email protected]>
for sort by number, misc. improvements.
Jörg Mensmann <[email protected]>
for Xinerama support patch.
Vadim Shliakhov
for miscellaneous fixes.
Uwe Ohse
for Exif enhancements, histogram and other patches
Timo Horstschäfer
for customizable fullscreen overlay
Michael Mokeev
for print related enhancements
Carles Pina i Estany
for copy path to clipboard patch
Kjell Morgenstern
for random slide show speedup patch
And...
Thanks to the users for finding Geeqie useful.