mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-14 20:33:48 +00:00
Documented thumbnail creationg
SVN revision: 2053
This commit is contained in:
parent
fd9643a093
commit
7742d2396e
@ -28,6 +28,7 @@
|
|||||||
<div class=menu> * this section :
|
<div class=menu> * this section :
|
||||||
[<a class=nav href="#unix">UNIX</a>]
|
[<a class=nav href="#unix">UNIX</a>]
|
||||||
[<a class=nav href="#windows">Windows</a>]
|
[<a class=nav href="#windows">Windows</a>]
|
||||||
|
[<a class=nav href="#imagemagick">ImageMagick</a>]
|
||||||
[<a class=nav href="#config">Configuration</a>]
|
[<a class=nav href="#config">Configuration</a>]
|
||||||
[<a class=nav href="config.html">elogd.cfg syntax</a>]
|
[<a class=nav href="config.html">elogd.cfg syntax</a>]
|
||||||
[<a class=nav href="#secure">Secure Connections</a>]
|
[<a class=nav href="#secure">Secure Connections</a>]
|
||||||
@ -223,6 +224,39 @@ into elogd.cfg.<p>
|
|||||||
Note that the variable $remote_host cannot be used inside elogd since the remote host is always
|
Note that the variable $remote_host cannot be used inside elogd since the remote host is always
|
||||||
the proxy host (anybody knows how to fix that???).<p>
|
the proxy host (anybody knows how to fix that???).<p>
|
||||||
|
|
||||||
|
<hr><a name="imagemagick"> <div class=section> Installing ImageMagick </div> <p>
|
||||||
|
When images are attached to ELOG entries, thumbnails can be created for quick preview.
|
||||||
|
This works also for PDF and PostScript files. ELOG forwards any image operation
|
||||||
|
to the ImageMagic and GhostScript packages, which must be installed for this
|
||||||
|
to work. While these packages are installed on most Linux systems, windows users
|
||||||
|
have to download and install these pagages manually. ImageMagick can be obtained
|
||||||
|
from <a href="http://www.imagemagick.org/">www.imagemagick.org</a> and GhostScript
|
||||||
|
can be obtained from <a href="http://pages.cs.wisc.edu/~ghost/">
|
||||||
|
http://pages.cs.wisc.edu/~ghost/</a>. After the installation, it has to be
|
||||||
|
made sure that both packages are in the path. This can be checked to open
|
||||||
|
a command prompt and typing <code><b>identify -version</b></code>. This
|
||||||
|
command should return someting like:<p>
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
C:\>identify -version
|
||||||
|
Version: ImageMagick 6.3.8 01/25/08 Q16 http://www.imagemagick.org
|
||||||
|
Copyright: Copyright (C) 1999-2008 ImageMagick Studio LLC
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
When ELOG is started interactively, it checks for the ImageMagick installation
|
||||||
|
and shows a note if it is found:<p>
|
||||||
|
|
||||||
|
<pre>
|
||||||
|
C:\Program Files\ELOG>elogd
|
||||||
|
elogd 2.7.2 built Feb 21 2008, 20:00:42 revision 2051
|
||||||
|
<b>ImageMagick detected</b>
|
||||||
|
Indexing logbooks ... done
|
||||||
|
Server listening on port 8080 ...
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
If ImageMagick is not installed, the thumbnail functions are simply disabled,
|
||||||
|
but ELOG can otherwise run normally.<p>
|
||||||
|
|
||||||
<hr><a name="windows"> <div class=section> Installing and running in Windows </div> <p> <b>
|
<hr><a name="windows"> <div class=section> Installing and running in Windows </div> <p> <b>
|
||||||
ELOG</b> is distributed in binary (executable) form for Windows platforms. It will run happily in <I>
|
ELOG</b> is distributed in binary (executable) form for Windows platforms. It will run happily in <I>
|
||||||
console mode</I> (or "<I>DOS box</I>") under Windows 9x and ME. Under Windows NT and 2000 it is also
|
console mode</I> (or "<I>DOS box</I>") under Windows 9x and ME. Under Windows NT and 2000 it is also
|
||||||
|
|||||||
@ -948,18 +948,22 @@ if the file name starts with a <b><code>"/"</code></b> (Unix) or <b><code>
|
|||||||
</li>
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<b><code>Thumbnail size = <size></code></b><br>
|
<b><code>Thumbnail size = <size></code></b><br>
|
||||||
This option controls the automatic generation of thumbnails for images
|
This option determines the default thumbnail size. To make the
|
||||||
and PDF/Postscript files. To make this working, one has to install
|
automatic generation of thumbnails working, the ImageMagick package
|
||||||
the <a href="http://www.imagemagick.org">ImageMagick</a> package. Make
|
has to be installed. Refer to the <a href="adminguilde.html#imagemagick">
|
||||||
sure that the <b><code>convert -version</code></b> program is in the
|
admin guide</a> for installation instructions. The thumbnail size
|
||||||
path when called from the command line. The thumbnail size
|
|
||||||
<b><code>size</code></b> gets passed to the <b><code>-thumbnail</code></b>
|
<b><code>size</code></b> gets passed to the <b><code>-thumbnail</code></b>
|
||||||
option of the conversion. A value of <b><code>300</code></b> converts
|
option of the conversion. A value of <b><code>300</code></b> converts
|
||||||
all pictures to thumbnails 300 pixels wide. A value of
|
all pictures to thumbnails 300 pixels wide. A value of
|
||||||
<b><code>300></code></b> converts all pictures to thumbnails 300
|
<b><code>300></code></b> converts all pictures to thumbnails 300
|
||||||
pixels wide if they are larger than 300 pixels initially, and leaves
|
pixels wide if they are larger than 300 pixels initially, and leaves
|
||||||
them untouched if they are smaller. A value of <b><code>10%</code></b>
|
them untouched if they are smaller. A value of <b><code>10%</code></b>
|
||||||
converts all pictures to 10% of their original size.
|
converts all pictures to 10% of their original size. If the
|
||||||
|
thumbnail size option is missing, the thumbnails will be created
|
||||||
|
with the original image size, and can then be resized and rotated
|
||||||
|
interactively with the image manipulation buttons:<p>
|
||||||
|
|
||||||
|
<img src="thumbnail.png"><p>
|
||||||
</li>
|
</li>
|
||||||
</ul><a name="attrib" id="attrib"></a>
|
</ul><a name="attrib" id="attrib"></a>
|
||||||
<hr>
|
<hr>
|
||||||
|
|||||||
BIN
doc/thumbnail.png
Normal file
BIN
doc/thumbnail.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 82 KiB |
Loading…
x
Reference in New Issue
Block a user