entangledstate-isbn 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (290) hide show
  1. data/README +1 -1
  2. data/Rakefile +0 -18
  3. data/VERSION +1 -0
  4. data/isbn.gemspec +290 -7
  5. data/lib/isbn.rb +6 -6
  6. data/src/gocr-0.48/.cvsignore +6 -0
  7. data/src/gocr-0.48/AUTHORS +7 -0
  8. data/src/gocr-0.48/BUGS +55 -0
  9. data/src/gocr-0.48/CREDITS +17 -0
  10. data/src/gocr-0.48/HISTORY +243 -0
  11. data/src/gocr-0.48/INSTALL +83 -0
  12. data/src/gocr-0.48/Makefile +193 -0
  13. data/src/gocr-0.48/Makefile.in +193 -0
  14. data/src/gocr-0.48/README +165 -0
  15. data/src/gocr-0.48/READMEde.txt +80 -0
  16. data/src/gocr-0.48/REMARK.txt +18 -0
  17. data/src/gocr-0.48/REVIEW +538 -0
  18. data/src/gocr-0.48/TODO +65 -0
  19. data/src/gocr-0.48/bin/.cvsignore +2 -0
  20. data/src/gocr-0.48/bin/create_db +38 -0
  21. data/src/gocr-0.48/bin/gocr.tcl +527 -0
  22. data/src/gocr-0.48/bin/gocr_chk.sh +44 -0
  23. data/src/gocr-0.48/configure +4689 -0
  24. data/src/gocr-0.48/configure.in +71 -0
  25. data/src/gocr-0.48/doc/.#Makefile.1.6 +39 -0
  26. data/src/gocr-0.48/doc/.cvsignore +2 -0
  27. data/src/gocr-0.48/doc/Makefile +39 -0
  28. data/src/gocr-0.48/doc/Makefile.in +39 -0
  29. data/src/gocr-0.48/doc/example.dtd +53 -0
  30. data/src/gocr-0.48/doc/example.xml +21 -0
  31. data/src/gocr-0.48/doc/examples.txt +67 -0
  32. data/src/gocr-0.48/doc/gocr.html +578 -0
  33. data/src/gocr-0.48/doc/unicode.txt +57 -0
  34. data/src/gocr-0.48/examples/.#Makefile.1.22 +166 -0
  35. data/src/gocr-0.48/examples/4x6.png +0 -0
  36. data/src/gocr-0.48/examples/4x6.txt +2 -0
  37. data/src/gocr-0.48/examples/5x7.png +0 -0
  38. data/src/gocr-0.48/examples/5x7.png.txt +2 -0
  39. data/src/gocr-0.48/examples/5x8.png +0 -0
  40. data/src/gocr-0.48/examples/5x8.png.txt +2 -0
  41. data/src/gocr-0.48/examples/Makefile +166 -0
  42. data/src/gocr-0.48/examples/color.fig +20 -0
  43. data/src/gocr-0.48/examples/ex.fig +16 -0
  44. data/src/gocr-0.48/examples/font.tex +22 -0
  45. data/src/gocr-0.48/examples/font1.tex +46 -0
  46. data/src/gocr-0.48/examples/font2.fig +27 -0
  47. data/src/gocr-0.48/examples/font_nw.tex +24 -0
  48. data/src/gocr-0.48/examples/handwrt1.jpg +0 -0
  49. data/src/gocr-0.48/examples/handwrt1.txt +10 -0
  50. data/src/gocr-0.48/examples/inverse.fig +20 -0
  51. data/src/gocr-0.48/examples/matrix.jpg +0 -0
  52. data/src/gocr-0.48/examples/ocr-a-subset.png +0 -0
  53. data/src/gocr-0.48/examples/ocr-a-subset.png.txt +4 -0
  54. data/src/gocr-0.48/examples/ocr-a.png +0 -0
  55. data/src/gocr-0.48/examples/ocr-a.txt +6 -0
  56. data/src/gocr-0.48/examples/ocr-b.png +0 -0
  57. data/src/gocr-0.48/examples/ocr-b.png.txt +4 -0
  58. data/src/gocr-0.48/examples/polish.tex +28 -0
  59. data/src/gocr-0.48/examples/rotate45.fig +14 -0
  60. data/src/gocr-0.48/examples/score +36 -0
  61. data/src/gocr-0.48/examples/text.tex +28 -0
  62. data/src/gocr-0.48/gocr.spec +143 -0
  63. data/src/gocr-0.48/gpl.html +537 -0
  64. data/src/gocr-0.48/include/.cvsignore +2 -0
  65. data/src/gocr-0.48/include/config.h +36 -0
  66. data/src/gocr-0.48/include/config.h.in +36 -0
  67. data/src/gocr-0.48/include/version.h +2 -0
  68. data/src/gocr-0.48/install-sh +3 -0
  69. data/src/gocr-0.48/make.bat +57 -0
  70. data/src/gocr-0.48/man/.cvsignore +2 -0
  71. data/src/gocr-0.48/man/Makefile +29 -0
  72. data/src/gocr-0.48/man/Makefile.in +29 -0
  73. data/src/gocr-0.48/man/man1/gocr.1 +166 -0
  74. data/src/gocr-0.48/src/.cvsignore +4 -0
  75. data/src/gocr-0.48/src/Makefile +132 -0
  76. data/src/gocr-0.48/src/Makefile.in +132 -0
  77. data/src/gocr-0.48/src/amiga.h +31 -0
  78. data/src/gocr-0.48/src/barcode.c +846 -0
  79. data/src/gocr-0.48/src/barcode.c.orig +593 -0
  80. data/src/gocr-0.48/src/barcode.h +11 -0
  81. data/src/gocr-0.48/src/box.c +372 -0
  82. data/src/gocr-0.48/src/database.c +462 -0
  83. data/src/gocr-0.48/src/detect.c +943 -0
  84. data/src/gocr-0.48/src/gocr.c +373 -0
  85. data/src/gocr-0.48/src/gocr.h +288 -0
  86. data/src/gocr-0.48/src/jconv.c +168 -0
  87. data/src/gocr-0.48/src/job.c +84 -0
  88. data/src/gocr-0.48/src/lines.c +350 -0
  89. data/src/gocr-0.48/src/list.c +334 -0
  90. data/src/gocr-0.48/src/list.h +90 -0
  91. data/src/gocr-0.48/src/ocr0.c +6756 -0
  92. data/src/gocr-0.48/src/ocr0.h +63 -0
  93. data/src/gocr-0.48/src/ocr0n.c +1475 -0
  94. data/src/gocr-0.48/src/ocr1.c +85 -0
  95. data/src/gocr-0.48/src/ocr1.h +3 -0
  96. data/src/gocr-0.48/src/otsu.c +289 -0
  97. data/src/gocr-0.48/src/otsu.h +23 -0
  98. data/src/gocr-0.48/src/output.c +289 -0
  99. data/src/gocr-0.48/src/output.h +37 -0
  100. data/src/gocr-0.48/src/pcx.c +153 -0
  101. data/src/gocr-0.48/src/pcx.h +9 -0
  102. data/src/gocr-0.48/src/pgm2asc.c +2893 -0
  103. data/src/gocr-0.48/src/pgm2asc.h +105 -0
  104. data/src/gocr-0.48/src/pixel.c +537 -0
  105. data/src/gocr-0.48/src/pnm.c +533 -0
  106. data/src/gocr-0.48/src/pnm.h +35 -0
  107. data/src/gocr-0.48/src/progress.c +87 -0
  108. data/src/gocr-0.48/src/progress.h +42 -0
  109. data/src/gocr-0.48/src/remove.c +703 -0
  110. data/src/gocr-0.48/src/tga.c +87 -0
  111. data/src/gocr-0.48/src/tga.h +6 -0
  112. data/src/gocr-0.48/src/unicode.c +1314 -0
  113. data/src/gocr-0.48/src/unicode.h +1257 -0
  114. data/src/jpeg-7/Makefile.am +133 -0
  115. data/src/jpeg-7/Makefile.in +1089 -0
  116. data/src/jpeg-7/README +322 -0
  117. data/src/jpeg-7/aclocal.m4 +8990 -0
  118. data/src/jpeg-7/ansi2knr.1 +36 -0
  119. data/src/jpeg-7/ansi2knr.c +739 -0
  120. data/src/jpeg-7/cderror.h +132 -0
  121. data/src/jpeg-7/cdjpeg.c +181 -0
  122. data/src/jpeg-7/cdjpeg.h +187 -0
  123. data/src/jpeg-7/change.log +270 -0
  124. data/src/jpeg-7/cjpeg.1 +325 -0
  125. data/src/jpeg-7/cjpeg.c +616 -0
  126. data/src/jpeg-7/ckconfig.c +402 -0
  127. data/src/jpeg-7/coderules.txt +118 -0
  128. data/src/jpeg-7/config.guess +1561 -0
  129. data/src/jpeg-7/config.sub +1686 -0
  130. data/src/jpeg-7/configure +17139 -0
  131. data/src/jpeg-7/configure.ac +317 -0
  132. data/src/jpeg-7/depcomp +630 -0
  133. data/src/jpeg-7/djpeg.1 +251 -0
  134. data/src/jpeg-7/djpeg.c +617 -0
  135. data/src/jpeg-7/example.c +433 -0
  136. data/src/jpeg-7/filelist.txt +215 -0
  137. data/src/jpeg-7/install-sh +520 -0
  138. data/src/jpeg-7/install.txt +1097 -0
  139. data/src/jpeg-7/jaricom.c +148 -0
  140. data/src/jpeg-7/jcapimin.c +282 -0
  141. data/src/jpeg-7/jcapistd.c +161 -0
  142. data/src/jpeg-7/jcarith.c +921 -0
  143. data/src/jpeg-7/jccoefct.c +453 -0
  144. data/src/jpeg-7/jccolor.c +459 -0
  145. data/src/jpeg-7/jcdctmgr.c +482 -0
  146. data/src/jpeg-7/jchuff.c +1612 -0
  147. data/src/jpeg-7/jcinit.c +65 -0
  148. data/src/jpeg-7/jcmainct.c +293 -0
  149. data/src/jpeg-7/jcmarker.c +667 -0
  150. data/src/jpeg-7/jcmaster.c +770 -0
  151. data/src/jpeg-7/jcomapi.c +106 -0
  152. data/src/jpeg-7/jconfig.bcc +48 -0
  153. data/src/jpeg-7/jconfig.cfg +45 -0
  154. data/src/jpeg-7/jconfig.dj +38 -0
  155. data/src/jpeg-7/jconfig.mac +43 -0
  156. data/src/jpeg-7/jconfig.manx +43 -0
  157. data/src/jpeg-7/jconfig.mc6 +52 -0
  158. data/src/jpeg-7/jconfig.sas +43 -0
  159. data/src/jpeg-7/jconfig.st +42 -0
  160. data/src/jpeg-7/jconfig.txt +155 -0
  161. data/src/jpeg-7/jconfig.vc +45 -0
  162. data/src/jpeg-7/jconfig.vms +37 -0
  163. data/src/jpeg-7/jconfig.wat +38 -0
  164. data/src/jpeg-7/jcparam.c +632 -0
  165. data/src/jpeg-7/jcprepct.c +358 -0
  166. data/src/jpeg-7/jcsample.c +545 -0
  167. data/src/jpeg-7/jctrans.c +381 -0
  168. data/src/jpeg-7/jdapimin.c +396 -0
  169. data/src/jpeg-7/jdapistd.c +275 -0
  170. data/src/jpeg-7/jdarith.c +762 -0
  171. data/src/jpeg-7/jdatadst.c +151 -0
  172. data/src/jpeg-7/jdatasrc.c +212 -0
  173. data/src/jpeg-7/jdcoefct.c +736 -0
  174. data/src/jpeg-7/jdcolor.c +396 -0
  175. data/src/jpeg-7/jdct.h +393 -0
  176. data/src/jpeg-7/jddctmgr.c +382 -0
  177. data/src/jpeg-7/jdhuff.c +1309 -0
  178. data/src/jpeg-7/jdinput.c +384 -0
  179. data/src/jpeg-7/jdmainct.c +512 -0
  180. data/src/jpeg-7/jdmarker.c +1360 -0
  181. data/src/jpeg-7/jdmaster.c +663 -0
  182. data/src/jpeg-7/jdmerge.c +400 -0
  183. data/src/jpeg-7/jdpostct.c +290 -0
  184. data/src/jpeg-7/jdsample.c +361 -0
  185. data/src/jpeg-7/jdtrans.c +136 -0
  186. data/src/jpeg-7/jerror.c +252 -0
  187. data/src/jpeg-7/jerror.h +304 -0
  188. data/src/jpeg-7/jfdctflt.c +174 -0
  189. data/src/jpeg-7/jfdctfst.c +230 -0
  190. data/src/jpeg-7/jfdctint.c +4348 -0
  191. data/src/jpeg-7/jidctflt.c +242 -0
  192. data/src/jpeg-7/jidctfst.c +368 -0
  193. data/src/jpeg-7/jidctint.c +5137 -0
  194. data/src/jpeg-7/jinclude.h +91 -0
  195. data/src/jpeg-7/jmemansi.c +167 -0
  196. data/src/jpeg-7/jmemdos.c +638 -0
  197. data/src/jpeg-7/jmemdosa.asm +379 -0
  198. data/src/jpeg-7/jmemmac.c +289 -0
  199. data/src/jpeg-7/jmemmgr.c +1118 -0
  200. data/src/jpeg-7/jmemname.c +276 -0
  201. data/src/jpeg-7/jmemnobs.c +109 -0
  202. data/src/jpeg-7/jmemsys.h +198 -0
  203. data/src/jpeg-7/jmorecfg.h +369 -0
  204. data/src/jpeg-7/jpegint.h +395 -0
  205. data/src/jpeg-7/jpeglib.h +1135 -0
  206. data/src/jpeg-7/jpegtran.1 +272 -0
  207. data/src/jpeg-7/jpegtran.c +546 -0
  208. data/src/jpeg-7/jquant1.c +856 -0
  209. data/src/jpeg-7/jquant2.c +1310 -0
  210. data/src/jpeg-7/jutils.c +179 -0
  211. data/src/jpeg-7/jversion.h +14 -0
  212. data/src/jpeg-7/libjpeg.map +4 -0
  213. data/src/jpeg-7/libjpeg.txt +3067 -0
  214. data/src/jpeg-7/ltmain.sh +8406 -0
  215. data/src/jpeg-7/makcjpeg.st +36 -0
  216. data/src/jpeg-7/makdjpeg.st +36 -0
  217. data/src/jpeg-7/makeadsw.vc6 +77 -0
  218. data/src/jpeg-7/makeasln.vc9 +33 -0
  219. data/src/jpeg-7/makecdep.vc6 +82 -0
  220. data/src/jpeg-7/makecdsp.vc6 +130 -0
  221. data/src/jpeg-7/makecmak.vc6 +159 -0
  222. data/src/jpeg-7/makecvcp.vc9 +186 -0
  223. data/src/jpeg-7/makeddep.vc6 +82 -0
  224. data/src/jpeg-7/makeddsp.vc6 +130 -0
  225. data/src/jpeg-7/makedmak.vc6 +159 -0
  226. data/src/jpeg-7/makedvcp.vc9 +186 -0
  227. data/src/jpeg-7/makefile.ansi +220 -0
  228. data/src/jpeg-7/makefile.bcc +291 -0
  229. data/src/jpeg-7/makefile.dj +226 -0
  230. data/src/jpeg-7/makefile.manx +220 -0
  231. data/src/jpeg-7/makefile.mc6 +255 -0
  232. data/src/jpeg-7/makefile.mms +224 -0
  233. data/src/jpeg-7/makefile.sas +258 -0
  234. data/src/jpeg-7/makefile.unix +234 -0
  235. data/src/jpeg-7/makefile.vc +217 -0
  236. data/src/jpeg-7/makefile.vms +142 -0
  237. data/src/jpeg-7/makefile.wat +239 -0
  238. data/src/jpeg-7/makejdep.vc6 +423 -0
  239. data/src/jpeg-7/makejdsp.vc6 +285 -0
  240. data/src/jpeg-7/makejdsw.vc6 +29 -0
  241. data/src/jpeg-7/makejmak.vc6 +425 -0
  242. data/src/jpeg-7/makejsln.vc9 +17 -0
  243. data/src/jpeg-7/makejvcp.vc9 +328 -0
  244. data/src/jpeg-7/makeproj.mac +213 -0
  245. data/src/jpeg-7/makerdep.vc6 +6 -0
  246. data/src/jpeg-7/makerdsp.vc6 +78 -0
  247. data/src/jpeg-7/makermak.vc6 +110 -0
  248. data/src/jpeg-7/makervcp.vc9 +133 -0
  249. data/src/jpeg-7/maketdep.vc6 +43 -0
  250. data/src/jpeg-7/maketdsp.vc6 +122 -0
  251. data/src/jpeg-7/maketmak.vc6 +131 -0
  252. data/src/jpeg-7/maketvcp.vc9 +178 -0
  253. data/src/jpeg-7/makewdep.vc6 +6 -0
  254. data/src/jpeg-7/makewdsp.vc6 +78 -0
  255. data/src/jpeg-7/makewmak.vc6 +110 -0
  256. data/src/jpeg-7/makewvcp.vc9 +133 -0
  257. data/src/jpeg-7/makljpeg.st +68 -0
  258. data/src/jpeg-7/maktjpeg.st +30 -0
  259. data/src/jpeg-7/makvms.opt +4 -0
  260. data/src/jpeg-7/missing +376 -0
  261. data/src/jpeg-7/rdbmp.c +439 -0
  262. data/src/jpeg-7/rdcolmap.c +253 -0
  263. data/src/jpeg-7/rdgif.c +38 -0
  264. data/src/jpeg-7/rdjpgcom.1 +63 -0
  265. data/src/jpeg-7/rdjpgcom.c +515 -0
  266. data/src/jpeg-7/rdppm.c +459 -0
  267. data/src/jpeg-7/rdrle.c +387 -0
  268. data/src/jpeg-7/rdswitch.c +365 -0
  269. data/src/jpeg-7/rdtarga.c +500 -0
  270. data/src/jpeg-7/structure.txt +945 -0
  271. data/src/jpeg-7/testimg.bmp +0 -0
  272. data/src/jpeg-7/testimg.jpg +0 -0
  273. data/src/jpeg-7/testimg.ppm +4 -0
  274. data/src/jpeg-7/testimgp.jpg +0 -0
  275. data/src/jpeg-7/testorig.jpg +0 -0
  276. data/src/jpeg-7/testprog.jpg +0 -0
  277. data/src/jpeg-7/transupp.c +1533 -0
  278. data/src/jpeg-7/transupp.h +205 -0
  279. data/src/jpeg-7/usage.txt +605 -0
  280. data/src/jpeg-7/wizard.txt +211 -0
  281. data/src/jpeg-7/wrbmp.c +442 -0
  282. data/src/jpeg-7/wrgif.c +399 -0
  283. data/src/jpeg-7/wrjpgcom.1 +103 -0
  284. data/src/jpeg-7/wrjpgcom.c +583 -0
  285. data/src/jpeg-7/wrppm.c +269 -0
  286. data/src/jpeg-7/wrrle.c +305 -0
  287. data/src/jpeg-7/wrtarga.c +253 -0
  288. metadata +287 -6
  289. data/LICENSE +0 -20
  290. data/VERSION.yml +0 -4
@@ -0,0 +1,459 @@
1
+ /*
2
+ * rdppm.c
3
+ *
4
+ * Copyright (C) 1991-1997, Thomas G. Lane.
5
+ * Modified 2009 by Bill Allombert, Guido Vollbeding.
6
+ * This file is part of the Independent JPEG Group's software.
7
+ * For conditions of distribution and use, see the accompanying README file.
8
+ *
9
+ * This file contains routines to read input images in PPM/PGM format.
10
+ * The extended 2-byte-per-sample raw PPM/PGM formats are supported.
11
+ * The PBMPLUS library is NOT required to compile this software
12
+ * (but it is highly useful as a set of PPM image manipulation programs).
13
+ *
14
+ * These routines may need modification for non-Unix environments or
15
+ * specialized applications. As they stand, they assume input from
16
+ * an ordinary stdio stream. They further assume that reading begins
17
+ * at the start of the file; start_input may need work if the
18
+ * user interface has already read some data (e.g., to determine that
19
+ * the file is indeed PPM format).
20
+ */
21
+
22
+ #include "cdjpeg.h" /* Common decls for cjpeg/djpeg applications */
23
+
24
+ #ifdef PPM_SUPPORTED
25
+
26
+
27
+ /* Portions of this code are based on the PBMPLUS library, which is:
28
+ **
29
+ ** Copyright (C) 1988 by Jef Poskanzer.
30
+ **
31
+ ** Permission to use, copy, modify, and distribute this software and its
32
+ ** documentation for any purpose and without fee is hereby granted, provided
33
+ ** that the above copyright notice appear in all copies and that both that
34
+ ** copyright notice and this permission notice appear in supporting
35
+ ** documentation. This software is provided "as is" without express or
36
+ ** implied warranty.
37
+ */
38
+
39
+
40
+ /* Macros to deal with unsigned chars as efficiently as compiler allows */
41
+
42
+ #ifdef HAVE_UNSIGNED_CHAR
43
+ typedef unsigned char U_CHAR;
44
+ #define UCH(x) ((int) (x))
45
+ #else /* !HAVE_UNSIGNED_CHAR */
46
+ #ifdef CHAR_IS_UNSIGNED
47
+ typedef char U_CHAR;
48
+ #define UCH(x) ((int) (x))
49
+ #else
50
+ typedef char U_CHAR;
51
+ #define UCH(x) ((int) (x) & 0xFF)
52
+ #endif
53
+ #endif /* HAVE_UNSIGNED_CHAR */
54
+
55
+
56
+ #define ReadOK(file,buffer,len) (JFREAD(file,buffer,len) == ((size_t) (len)))
57
+
58
+
59
+ /*
60
+ * On most systems, reading individual bytes with getc() is drastically less
61
+ * efficient than buffering a row at a time with fread(). On PCs, we must
62
+ * allocate the buffer in near data space, because we are assuming small-data
63
+ * memory model, wherein fread() can't reach far memory. If you need to
64
+ * process very wide images on a PC, you might have to compile in large-memory
65
+ * model, or else replace fread() with a getc() loop --- which will be much
66
+ * slower.
67
+ */
68
+
69
+
70
+ /* Private version of data source object */
71
+
72
+ typedef struct {
73
+ struct cjpeg_source_struct pub; /* public fields */
74
+
75
+ U_CHAR *iobuffer; /* non-FAR pointer to I/O buffer */
76
+ JSAMPROW pixrow; /* FAR pointer to same */
77
+ size_t buffer_width; /* width of I/O buffer */
78
+ JSAMPLE *rescale; /* => maxval-remapping array, or NULL */
79
+ } ppm_source_struct;
80
+
81
+ typedef ppm_source_struct * ppm_source_ptr;
82
+
83
+
84
+ LOCAL(int)
85
+ pbm_getc (FILE * infile)
86
+ /* Read next char, skipping over any comments */
87
+ /* A comment/newline sequence is returned as a newline */
88
+ {
89
+ register int ch;
90
+
91
+ ch = getc(infile);
92
+ if (ch == '#') {
93
+ do {
94
+ ch = getc(infile);
95
+ } while (ch != '\n' && ch != EOF);
96
+ }
97
+ return ch;
98
+ }
99
+
100
+
101
+ LOCAL(unsigned int)
102
+ read_pbm_integer (j_compress_ptr cinfo, FILE * infile)
103
+ /* Read an unsigned decimal integer from the PPM file */
104
+ /* Swallows one trailing character after the integer */
105
+ /* Note that on a 16-bit-int machine, only values up to 64k can be read. */
106
+ /* This should not be a problem in practice. */
107
+ {
108
+ register int ch;
109
+ register unsigned int val;
110
+
111
+ /* Skip any leading whitespace */
112
+ do {
113
+ ch = pbm_getc(infile);
114
+ if (ch == EOF)
115
+ ERREXIT(cinfo, JERR_INPUT_EOF);
116
+ } while (ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r');
117
+
118
+ if (ch < '0' || ch > '9')
119
+ ERREXIT(cinfo, JERR_PPM_NONNUMERIC);
120
+
121
+ val = ch - '0';
122
+ while ((ch = pbm_getc(infile)) >= '0' && ch <= '9') {
123
+ val *= 10;
124
+ val += ch - '0';
125
+ }
126
+ return val;
127
+ }
128
+
129
+
130
+ /*
131
+ * Read one row of pixels.
132
+ *
133
+ * We provide several different versions depending on input file format.
134
+ * In all cases, input is scaled to the size of JSAMPLE.
135
+ *
136
+ * A really fast path is provided for reading byte/sample raw files with
137
+ * maxval = MAXJSAMPLE, which is the normal case for 8-bit data.
138
+ */
139
+
140
+
141
+ METHODDEF(JDIMENSION)
142
+ get_text_gray_row (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
143
+ /* This version is for reading text-format PGM files with any maxval */
144
+ {
145
+ ppm_source_ptr source = (ppm_source_ptr) sinfo;
146
+ FILE * infile = source->pub.input_file;
147
+ register JSAMPROW ptr;
148
+ register JSAMPLE *rescale = source->rescale;
149
+ JDIMENSION col;
150
+
151
+ ptr = source->pub.buffer[0];
152
+ for (col = cinfo->image_width; col > 0; col--) {
153
+ *ptr++ = rescale[read_pbm_integer(cinfo, infile)];
154
+ }
155
+ return 1;
156
+ }
157
+
158
+
159
+ METHODDEF(JDIMENSION)
160
+ get_text_rgb_row (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
161
+ /* This version is for reading text-format PPM files with any maxval */
162
+ {
163
+ ppm_source_ptr source = (ppm_source_ptr) sinfo;
164
+ FILE * infile = source->pub.input_file;
165
+ register JSAMPROW ptr;
166
+ register JSAMPLE *rescale = source->rescale;
167
+ JDIMENSION col;
168
+
169
+ ptr = source->pub.buffer[0];
170
+ for (col = cinfo->image_width; col > 0; col--) {
171
+ *ptr++ = rescale[read_pbm_integer(cinfo, infile)];
172
+ *ptr++ = rescale[read_pbm_integer(cinfo, infile)];
173
+ *ptr++ = rescale[read_pbm_integer(cinfo, infile)];
174
+ }
175
+ return 1;
176
+ }
177
+
178
+
179
+ METHODDEF(JDIMENSION)
180
+ get_scaled_gray_row (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
181
+ /* This version is for reading raw-byte-format PGM files with any maxval */
182
+ {
183
+ ppm_source_ptr source = (ppm_source_ptr) sinfo;
184
+ register JSAMPROW ptr;
185
+ register U_CHAR * bufferptr;
186
+ register JSAMPLE *rescale = source->rescale;
187
+ JDIMENSION col;
188
+
189
+ if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
190
+ ERREXIT(cinfo, JERR_INPUT_EOF);
191
+ ptr = source->pub.buffer[0];
192
+ bufferptr = source->iobuffer;
193
+ for (col = cinfo->image_width; col > 0; col--) {
194
+ *ptr++ = rescale[UCH(*bufferptr++)];
195
+ }
196
+ return 1;
197
+ }
198
+
199
+
200
+ METHODDEF(JDIMENSION)
201
+ get_scaled_rgb_row (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
202
+ /* This version is for reading raw-byte-format PPM files with any maxval */
203
+ {
204
+ ppm_source_ptr source = (ppm_source_ptr) sinfo;
205
+ register JSAMPROW ptr;
206
+ register U_CHAR * bufferptr;
207
+ register JSAMPLE *rescale = source->rescale;
208
+ JDIMENSION col;
209
+
210
+ if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
211
+ ERREXIT(cinfo, JERR_INPUT_EOF);
212
+ ptr = source->pub.buffer[0];
213
+ bufferptr = source->iobuffer;
214
+ for (col = cinfo->image_width; col > 0; col--) {
215
+ *ptr++ = rescale[UCH(*bufferptr++)];
216
+ *ptr++ = rescale[UCH(*bufferptr++)];
217
+ *ptr++ = rescale[UCH(*bufferptr++)];
218
+ }
219
+ return 1;
220
+ }
221
+
222
+
223
+ METHODDEF(JDIMENSION)
224
+ get_raw_row (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
225
+ /* This version is for reading raw-byte-format files with maxval = MAXJSAMPLE.
226
+ * In this case we just read right into the JSAMPLE buffer!
227
+ * Note that same code works for PPM and PGM files.
228
+ */
229
+ {
230
+ ppm_source_ptr source = (ppm_source_ptr) sinfo;
231
+
232
+ if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
233
+ ERREXIT(cinfo, JERR_INPUT_EOF);
234
+ return 1;
235
+ }
236
+
237
+
238
+ METHODDEF(JDIMENSION)
239
+ get_word_gray_row (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
240
+ /* This version is for reading raw-word-format PGM files with any maxval */
241
+ {
242
+ ppm_source_ptr source = (ppm_source_ptr) sinfo;
243
+ register JSAMPROW ptr;
244
+ register U_CHAR * bufferptr;
245
+ register JSAMPLE *rescale = source->rescale;
246
+ JDIMENSION col;
247
+
248
+ if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
249
+ ERREXIT(cinfo, JERR_INPUT_EOF);
250
+ ptr = source->pub.buffer[0];
251
+ bufferptr = source->iobuffer;
252
+ for (col = cinfo->image_width; col > 0; col--) {
253
+ register int temp;
254
+ temp = UCH(*bufferptr++) << 8;
255
+ temp |= UCH(*bufferptr++);
256
+ *ptr++ = rescale[temp];
257
+ }
258
+ return 1;
259
+ }
260
+
261
+
262
+ METHODDEF(JDIMENSION)
263
+ get_word_rgb_row (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
264
+ /* This version is for reading raw-word-format PPM files with any maxval */
265
+ {
266
+ ppm_source_ptr source = (ppm_source_ptr) sinfo;
267
+ register JSAMPROW ptr;
268
+ register U_CHAR * bufferptr;
269
+ register JSAMPLE *rescale = source->rescale;
270
+ JDIMENSION col;
271
+
272
+ if (! ReadOK(source->pub.input_file, source->iobuffer, source->buffer_width))
273
+ ERREXIT(cinfo, JERR_INPUT_EOF);
274
+ ptr = source->pub.buffer[0];
275
+ bufferptr = source->iobuffer;
276
+ for (col = cinfo->image_width; col > 0; col--) {
277
+ register int temp;
278
+ temp = UCH(*bufferptr++) << 8;
279
+ temp |= UCH(*bufferptr++);
280
+ *ptr++ = rescale[temp];
281
+ temp = UCH(*bufferptr++) << 8;
282
+ temp |= UCH(*bufferptr++);
283
+ *ptr++ = rescale[temp];
284
+ temp = UCH(*bufferptr++) << 8;
285
+ temp |= UCH(*bufferptr++);
286
+ *ptr++ = rescale[temp];
287
+ }
288
+ return 1;
289
+ }
290
+
291
+
292
+ /*
293
+ * Read the file header; return image size and component count.
294
+ */
295
+
296
+ METHODDEF(void)
297
+ start_input_ppm (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
298
+ {
299
+ ppm_source_ptr source = (ppm_source_ptr) sinfo;
300
+ int c;
301
+ unsigned int w, h, maxval;
302
+ boolean need_iobuffer, use_raw_buffer, need_rescale;
303
+
304
+ if (getc(source->pub.input_file) != 'P')
305
+ ERREXIT(cinfo, JERR_PPM_NOT);
306
+
307
+ c = getc(source->pub.input_file); /* subformat discriminator character */
308
+
309
+ /* detect unsupported variants (ie, PBM) before trying to read header */
310
+ switch (c) {
311
+ case '2': /* it's a text-format PGM file */
312
+ case '3': /* it's a text-format PPM file */
313
+ case '5': /* it's a raw-format PGM file */
314
+ case '6': /* it's a raw-format PPM file */
315
+ break;
316
+ default:
317
+ ERREXIT(cinfo, JERR_PPM_NOT);
318
+ break;
319
+ }
320
+
321
+ /* fetch the remaining header info */
322
+ w = read_pbm_integer(cinfo, source->pub.input_file);
323
+ h = read_pbm_integer(cinfo, source->pub.input_file);
324
+ maxval = read_pbm_integer(cinfo, source->pub.input_file);
325
+
326
+ if (w <= 0 || h <= 0 || maxval <= 0) /* error check */
327
+ ERREXIT(cinfo, JERR_PPM_NOT);
328
+
329
+ cinfo->data_precision = BITS_IN_JSAMPLE; /* we always rescale data to this */
330
+ cinfo->image_width = (JDIMENSION) w;
331
+ cinfo->image_height = (JDIMENSION) h;
332
+
333
+ /* initialize flags to most common settings */
334
+ need_iobuffer = TRUE; /* do we need an I/O buffer? */
335
+ use_raw_buffer = FALSE; /* do we map input buffer onto I/O buffer? */
336
+ need_rescale = TRUE; /* do we need a rescale array? */
337
+
338
+ switch (c) {
339
+ case '2': /* it's a text-format PGM file */
340
+ cinfo->input_components = 1;
341
+ cinfo->in_color_space = JCS_GRAYSCALE;
342
+ TRACEMS2(cinfo, 1, JTRC_PGM_TEXT, w, h);
343
+ source->pub.get_pixel_rows = get_text_gray_row;
344
+ need_iobuffer = FALSE;
345
+ break;
346
+
347
+ case '3': /* it's a text-format PPM file */
348
+ cinfo->input_components = 3;
349
+ cinfo->in_color_space = JCS_RGB;
350
+ TRACEMS2(cinfo, 1, JTRC_PPM_TEXT, w, h);
351
+ source->pub.get_pixel_rows = get_text_rgb_row;
352
+ need_iobuffer = FALSE;
353
+ break;
354
+
355
+ case '5': /* it's a raw-format PGM file */
356
+ cinfo->input_components = 1;
357
+ cinfo->in_color_space = JCS_GRAYSCALE;
358
+ TRACEMS2(cinfo, 1, JTRC_PGM, w, h);
359
+ if (maxval > 255) {
360
+ source->pub.get_pixel_rows = get_word_gray_row;
361
+ } else if (maxval == MAXJSAMPLE && SIZEOF(JSAMPLE) == SIZEOF(U_CHAR)) {
362
+ source->pub.get_pixel_rows = get_raw_row;
363
+ use_raw_buffer = TRUE;
364
+ need_rescale = FALSE;
365
+ } else {
366
+ source->pub.get_pixel_rows = get_scaled_gray_row;
367
+ }
368
+ break;
369
+
370
+ case '6': /* it's a raw-format PPM file */
371
+ cinfo->input_components = 3;
372
+ cinfo->in_color_space = JCS_RGB;
373
+ TRACEMS2(cinfo, 1, JTRC_PPM, w, h);
374
+ if (maxval > 255) {
375
+ source->pub.get_pixel_rows = get_word_rgb_row;
376
+ } else if (maxval == MAXJSAMPLE && SIZEOF(JSAMPLE) == SIZEOF(U_CHAR)) {
377
+ source->pub.get_pixel_rows = get_raw_row;
378
+ use_raw_buffer = TRUE;
379
+ need_rescale = FALSE;
380
+ } else {
381
+ source->pub.get_pixel_rows = get_scaled_rgb_row;
382
+ }
383
+ break;
384
+ }
385
+
386
+ /* Allocate space for I/O buffer: 1 or 3 bytes or words/pixel. */
387
+ if (need_iobuffer) {
388
+ source->buffer_width = (size_t) w * cinfo->input_components *
389
+ ((maxval<=255) ? SIZEOF(U_CHAR) : (2*SIZEOF(U_CHAR)));
390
+ source->iobuffer = (U_CHAR *)
391
+ (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
392
+ source->buffer_width);
393
+ }
394
+
395
+ /* Create compressor input buffer. */
396
+ if (use_raw_buffer) {
397
+ /* For unscaled raw-input case, we can just map it onto the I/O buffer. */
398
+ /* Synthesize a JSAMPARRAY pointer structure */
399
+ /* Cast here implies near->far pointer conversion on PCs */
400
+ source->pixrow = (JSAMPROW) source->iobuffer;
401
+ source->pub.buffer = & source->pixrow;
402
+ source->pub.buffer_height = 1;
403
+ } else {
404
+ /* Need to translate anyway, so make a separate sample buffer. */
405
+ source->pub.buffer = (*cinfo->mem->alloc_sarray)
406
+ ((j_common_ptr) cinfo, JPOOL_IMAGE,
407
+ (JDIMENSION) w * cinfo->input_components, (JDIMENSION) 1);
408
+ source->pub.buffer_height = 1;
409
+ }
410
+
411
+ /* Compute the rescaling array if required. */
412
+ if (need_rescale) {
413
+ INT32 val, half_maxval;
414
+
415
+ /* On 16-bit-int machines we have to be careful of maxval = 65535 */
416
+ source->rescale = (JSAMPLE *)
417
+ (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
418
+ (size_t) (((long) maxval + 1L) * SIZEOF(JSAMPLE)));
419
+ half_maxval = maxval / 2;
420
+ for (val = 0; val <= (INT32) maxval; val++) {
421
+ /* The multiplication here must be done in 32 bits to avoid overflow */
422
+ source->rescale[val] = (JSAMPLE) ((val*MAXJSAMPLE + half_maxval)/maxval);
423
+ }
424
+ }
425
+ }
426
+
427
+
428
+ /*
429
+ * Finish up at the end of the file.
430
+ */
431
+
432
+ METHODDEF(void)
433
+ finish_input_ppm (j_compress_ptr cinfo, cjpeg_source_ptr sinfo)
434
+ {
435
+ /* no work */
436
+ }
437
+
438
+
439
+ /*
440
+ * The module selection routine for PPM format input.
441
+ */
442
+
443
+ GLOBAL(cjpeg_source_ptr)
444
+ jinit_read_ppm (j_compress_ptr cinfo)
445
+ {
446
+ ppm_source_ptr source;
447
+
448
+ /* Create module interface object */
449
+ source = (ppm_source_ptr)
450
+ (*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
451
+ SIZEOF(ppm_source_struct));
452
+ /* Fill in method ptrs, except get_pixel_rows which start_input sets */
453
+ source->pub.start_input = start_input_ppm;
454
+ source->pub.finish_input = finish_input_ppm;
455
+
456
+ return (cjpeg_source_ptr) source;
457
+ }
458
+
459
+ #endif /* PPM_SUPPORTED */