summaryrefslogtreecommitdiff
path: root/camlibs/jd11
diff options
context:
space:
mode:
authorHans Ulrich Niedermann <hun@n-dimensional.de>2021-10-05 04:03:21 +0200
committerMarcus Meissner <meissner@suse.de>2021-10-09 10:50:07 +0200
commitb01e0ff43311502bc49b89cb47e7ca2146485ea8 (patch)
treeb21ef801ac7cbee47431f587c27d9aa015d7dade /camlibs/jd11
parent6fdc5f8f370b2716e7342f994c19b9c7ae37a0f6 (diff)
downloadlibgphoto2-b01e0ff43311502bc49b89cb47e7ca2146485ea8.tar.gz
utf-8: change xml/html from iso-8859-1 to utf-8
Diffstat (limited to 'camlibs/jd11')
-rw-r--r--camlibs/jd11/jd11.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/camlibs/jd11/jd11.html b/camlibs/jd11/jd11.html
index e3f5bf380..00e0f6a39 100644
--- a/camlibs/jd11/jd11.html
+++ b/camlibs/jd11/jd11.html
@@ -1,7 +1,7 @@
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="GENERATOR" content="Mozilla/4.61C-CCK-MCD Caldera Systems OpenLinux [en] (X11; I; Linux 2.2.14 i586) [Netscape]">
<meta name="license" content="GPL v2">
<title>Reverse Engineering the JD11 (JenCam 11) </title>
@@ -125,7 +125,7 @@ character.
<td>
The packetreader. It is called in a loop after querying the
imagesize. If 201 bytes are read, the 201th byte is the checksum
- (sum of 0-199)&0xff, otherwise there is no checksum.<br>
+ (sum of 0-199)&amp;0xff, otherwise there is no checksum.<br>
Returns the 200 bytes read.
</td>
</tr>
@@ -297,7 +297,7 @@ Both give pretty grayscale pictures, but are not yet in color.
The high quality format uses a very different compression.<p>
It just compacts all 8bit values to 6bit by shortening out the 2 least
significant bits.
-So we just restore them (AAAA AABB BBBB CCCC CCDD DDDD -> AAAAAA00, BBBBBB00,
+So we just restore them (AAAA AABB BBBB CCCC CCDD DDDD -&gt; AAAAAA00, BBBBBB00,
CCCCCC00, DDDDDD00) and get the same grayscale images as with the lowquality
compression.