summaryrefslogtreecommitdiff
path: root/manual/plugins/imageviewer.tex
diff options
context:
space:
mode:
authorTeruaki Kawashima <teru@rockbox.org>2011-01-16 11:40:47 +0000
committerTeruaki Kawashima <teru@rockbox.org>2011-01-16 11:40:47 +0000
commit5c09844d54c7adba80fd261e83a4c895d007a576 (patch)
tree9498be0d64be8da4e81ea93fd4c1c32e23565dd6 /manual/plugins/imageviewer.tex
parente9fa68a5c005e679f59bfc53b93ba77cfe1a0b7b (diff)
downloadrockbox-5c09844d54c7adba80fd261e83a4c895d007a576.tar.gz
rockbox-5c09844d54c7adba80fd261e83a4c895d007a576.zip
Update manual for image viewer plugin.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29065 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'manual/plugins/imageviewer.tex')
-rw-r--r--manual/plugins/imageviewer.tex11
1 files changed, 10 insertions, 1 deletions
diff --git a/manual/plugins/imageviewer.tex b/manual/plugins/imageviewer.tex
index 28ef62e3a6..e3603fa6ce 100644
--- a/manual/plugins/imageviewer.tex
+++ b/manual/plugins/imageviewer.tex
@@ -3,12 +3,15 @@
3This plugin opens image files from the \setting{File Browser} to display them\nopt{lcd_color}{ using Rockbox's greyscale library}. Supported formats are as follows. 3This plugin opens image files from the \setting{File Browser} to display them\nopt{lcd_color}{ using Rockbox's greyscale library}. Supported formats are as follows.
4 4
5\begin{table} 5\begin{table}
6 \begin{rbtabular}{.60\textwidth}{llX}% 6 \begin{rbtabular}{.60\textwidth}{lX}%
7 {\textbf{Format}& \textbf{File-extension(s)}}% 7 {\textbf{Format}& \textbf{File-extension(s)}}%
8 {}{} 8 {}{}
9 BMP & \fname{.bmp} \\ 9 BMP & \fname{.bmp} \\
10 JPEG & \fname{.jpg, .jpe, .jpeg} \\ 10 JPEG & \fname{.jpg, .jpe, .jpeg} \\
11 PNG & \fname{.png} \\ 11 PNG & \fname{.png} \\
12 \opt{lcd_color}{
13 PPM & \fname{.ppm} \\
14 }
12 \end{rbtabular} 15 \end{rbtabular}
13\end{table} 16\end{table}
14 17
@@ -139,4 +142,10 @@ for JPEG images.
139Progressive scan and other unusual JPEG files are not supported, and will 142Progressive scan and other unusual JPEG files are not supported, and will
140result in various ``unsupported xx'' messages. Processing could also fail if the 143result in various ``unsupported xx'' messages. Processing could also fail if the
141image is too big to decode which will be explained by a respective message. 144image is too big to decode which will be explained by a respective message.
145
146\opt{lcd_color}{
147 Supported PPM files are both ASCII PPM (P3) and raw PPM (P6).
148 For more information about PPM files, see
149 \url{http://netpbm.sourceforge.net/doc/ppm.html}
150}
142} 151}