A Simple X Image Viewer
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

README.md 6.8 KiB

il y a 11 ans
il y a 14 ans
il y a 14 ans
il y a 14 ans
il y a 14 ans
il y a 14 ans
il y a 14 ans
il y a 14 ans
il y a 13 ans
il y a 14 ans
il y a 7 ans
il y a 7 ans
il y a 10 ans
il y a 10 ans
il y a 12 ans
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. ![sxiv](http://muennich.github.com/sxiv/img/logo.png "sxiv")
  2. **Simple X Image Viewer**
  3. The sole purpose of sxiv is to be the perfect image viewer for me. It is free
  4. software so that you can use it and modify it for your needs. Please file a bug
  5. report if something does not work as documented or expected. Contributions are
  6. welcome but there is no guarantee that they will be incorporated.
  7. Features
  8. --------
  9. * Basic image operations, e.g. zooming, panning, rotating
  10. * Customizable key and mouse button mappings (in *config.h*)
  11. * Thumbnail mode: grid of selectable previews of all images
  12. * Ability to cache thumbnails for fast re-loading
  13. * Basic support for multi-frame images
  14. * Load all frames from GIF files and play GIF animations
  15. * Display image information in status bar
  16. Screenshots
  17. -----------
  18. **Image mode:**
  19. ![Image](http://muennich.github.com/sxiv/img/image.png "Image mode")
  20. **Thumbnail mode:**
  21. ![Thumb](http://muennich.github.com/sxiv/img/thumb.png "Thumb mode")
  22. Installation
  23. ------------
  24. sxiv is built using the commands:
  25. $ make
  26. # make install
  27. Please note, that the latter one requires root privileges.
  28. By default, sxiv is installed using the prefix "/usr/local", so the full path
  29. of the executable will be "/usr/local/bin/sxiv".
  30. You can install sxiv into a directory of your choice by changing the second
  31. command to:
  32. # make PREFIX="/your/dir" install
  33. The build-time specific settings of sxiv can be found in the file *config.h*.
  34. Please check and change them, so that they fit your needs.
  35. If the file *config.h* does not already exist, then you have to create it with
  36. the following command:
  37. $ make config.h
  38. Usage
  39. -----
  40. Please see the [man page](http://muennich.github.com/sxiv/sxiv.1.html) for
  41. information on how to use sxiv.
  42. Download & Changelog
  43. --------------------
  44. You can [browse](https://github.com/muennich/sxiv) the source code repository
  45. on GitHub or get a copy using git with the following command:
  46. git clone https://github.com/muennich/sxiv.git
  47. **Stable releases**
  48. **[v24](https://github.com/muennich/sxiv/archive/v24.tar.gz)**
  49. *(October 27, 2017)*
  50. * Automatically reload the current image whenever it changes
  51. * Support embedding into other X windows with -e (e.g. tabbed)
  52. * New option -p prevents sxiv from creating cache and temporary files
  53. * Simpler mouse mappings, the most basic features are accessible with the
  54. mouse only (navigate, zoom, pan)
  55. **[v1.3.2](https://github.com/muennich/sxiv/archive/v1.3.2.tar.gz)**
  56. *(December 20, 2015)*
  57. * external key handler gets file paths on stdin, not as arguments
  58. * Cache out-of-view thumbnails in the background
  59. * Apply gamma correction to thumbnails
  60. **[v1.3.1](https://github.com/muennich/sxiv/archive/v1.3.1.tar.gz)**
  61. *(November 16, 2014)*
  62. * Fixed build error, caused by delayed config.h creation
  63. * Fixed segfault when run with -c
  64. **[v1.3](https://github.com/muennich/sxiv/archive/v1.3.tar.gz)**
  65. *(October 24, 2014)*
  66. * Extract thumbnails from EXIF tags (requires libexif)
  67. * Zoomable thumbnails, supported sizes defined in config.h
  68. * Fixed build error with giflib version >= 5.1.0
  69. **[v1.2](https://github.com/muennich/sxiv/archive/v1.2.tar.gz)**
  70. *(April 24, 2014)*
  71. * Added external key handler, called on keys prefixed with `Ctrl-x`
  72. * New keybinding `{`/`}` to change gamma (by András Mohari)
  73. * Support for slideshows, enabled with `-S` option & toggled with `s`
  74. * Added application icon (created by 0ion9)
  75. * Checkerboard background for alpha layer
  76. * Option `-o` only prints files marked with `m` key
  77. * Fixed rotation/flipping of multi-frame images (gifs)
  78. **[v1.1.1](https://github.com/muennich/sxiv/archive/v1.1.1.tar.gz)**
  79. *(June 2, 2013)*
  80. * Various bug fixes
  81. **[v1.1](https://github.com/muennich/sxiv/archive/v1.1.tar.gz)**
  82. *(March 30, 2013)*
  83. * Added status bar on bottom of window with customizable content
  84. * New keyboard shortcuts `\`/`|`: flip image vertically/horizontally
  85. * New keyboard shortcut `Ctrl-6`: go to last/alternate image
  86. * Added own EXIF orientation handling, removed dependency on libexif
  87. * Fixed various bugs
  88. **[v1.0](https://github.com/muennich/sxiv/archive/v1.0.tar.gz)**
  89. *(October 31, 2011)*
  90. * Support for multi-frame images & GIF animations
  91. * POSIX compliant (IEEE Std 1003.1-2001)
  92. **[v0.9](https://github.com/muennich/sxiv/archive/v0.9.tar.gz)**
  93. *(August 17, 2011)*
  94. * Made key and mouse mappings fully configurable in config.h
  95. * Complete code refactoring
  96. **[v0.8.2](https://github.com/muennich/sxiv/archive/v0.8.2.tar.gz)**
  97. *(June 29, 2011)*
  98. * POSIX-compliant Makefile; compiles under NetBSD
  99. **[v0.8.1](https://github.com/muennich/sxiv/archive/v0.8.1.tar.gz)**
  100. *(May 8, 2011)*
  101. * Fixed fullscreen under window managers, which are not fully EWMH-compliant
  102. **[v0.8](https://github.com/muennich/sxiv/archive/v0.8.tar.gz)**
  103. *(April 18, 2011)*
  104. * Support for thumbnail caching
  105. * Ability to run external commands (e.g. jpegtran, convert) on current image
  106. **[v0.7](https://github.com/muennich/sxiv/archive/v0.7.tar.gz)**
  107. *(February 26, 2011)*
  108. * Sort directory entries when using `-r` command line option
  109. * Hide cursor in image mode
  110. * Full functional thumbnail mode, use Return key to switch between image and
  111. thumbnail mode
  112. **[v0.6](https://github.com/muennich/sxiv/archive/v0.6.tar.gz)**
  113. *(February 16, 2011)*
  114. * Bug fix: Correctly display filenames with umlauts in window title
  115. * Basic support of thumbnails
  116. **[v0.5](https://github.com/muennich/sxiv/archive/v0.5.tar.gz)**
  117. *(February 6, 2011)*
  118. * New command line option: `-r`: open all images in given directories
  119. * New key shortcuts: `w`: resize image to fit into window; `W`: resize window
  120. to fit to image
  121. **[v0.4](https://github.com/muennich/sxiv/archive/v0.4.tar.gz)**
  122. *(February 1, 2011)*
  123. * New command line option: `-F`, `-g`: use fixed window dimensions and apply
  124. a given window geometry
  125. * New key shortcut: `r`: reload current image
  126. **[v0.3.1](https://github.com/muennich/sxiv/archive/v0.3.1.tar.gz)**
  127. *(January 30, 2011)*
  128. * Bug fix: Do not set setuid bit on executable when using `make install`
  129. * Pan image with mouse while pressing middle mouse button
  130. **[v0.3](https://github.com/muennich/sxiv/archive/v0.3.tar.gz)**
  131. *(January 29, 2011)*
  132. * New command line options: `-d`, `-f`, `-p`, `-s`, `-v`, `-w`, `-Z`, `-z`
  133. * More mouse mappings: Go to next/previous image with left/right click,
  134. scroll image with mouse wheel (horizontally if Shift key is pressed),
  135. zoom image with mouse wheel if Ctrl key is pressed
  136. **[v0.2](https://github.com/muennich/sxiv/archive/v0.2.tar.gz)**
  137. *(January 23, 2011)*
  138. * Bug fix: Handle window resizes correctly
  139. * New keyboard shortcuts: `g`/`G`: go to first/last image; `[`/`]`: go 10
  140. images back/forward
  141. * Support for mouse wheel zooming (by Dave Reisner)
  142. * Added fullscreen mode
  143. **[v0.1](https://github.com/muennich/sxiv/archive/v0.1.tar.gz)**
  144. *(January 21, 2011)*
  145. * Initial release