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,583 @@
1
+ /*
2
+ * wrjpgcom.c
3
+ *
4
+ * Copyright (C) 1994-1997, Thomas G. Lane.
5
+ * This file is part of the Independent JPEG Group's software.
6
+ * For conditions of distribution and use, see the accompanying README file.
7
+ *
8
+ * This file contains a very simple stand-alone application that inserts
9
+ * user-supplied text as a COM (comment) marker in a JFIF file.
10
+ * This may be useful as an example of the minimum logic needed to parse
11
+ * JPEG markers.
12
+ */
13
+
14
+ #define JPEG_CJPEG_DJPEG /* to get the command-line config symbols */
15
+ #include "jinclude.h" /* get auto-config symbols, <stdio.h> */
16
+
17
+ #ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc() */
18
+ extern void * malloc ();
19
+ #endif
20
+ #include <ctype.h> /* to declare isupper(), tolower() */
21
+ #ifdef USE_SETMODE
22
+ #include <fcntl.h> /* to declare setmode()'s parameter macros */
23
+ /* If you have setmode() but not <io.h>, just delete this line: */
24
+ #include <io.h> /* to declare setmode() */
25
+ #endif
26
+
27
+ #ifdef USE_CCOMMAND /* command-line reader for Macintosh */
28
+ #ifdef __MWERKS__
29
+ #include <SIOUX.h> /* Metrowerks needs this */
30
+ #include <console.h> /* ... and this */
31
+ #endif
32
+ #ifdef THINK_C
33
+ #include <console.h> /* Think declares it here */
34
+ #endif
35
+ #endif
36
+
37
+ #ifdef DONT_USE_B_MODE /* define mode parameters for fopen() */
38
+ #define READ_BINARY "r"
39
+ #define WRITE_BINARY "w"
40
+ #else
41
+ #ifdef VMS /* VMS is very nonstandard */
42
+ #define READ_BINARY "rb", "ctx=stm"
43
+ #define WRITE_BINARY "wb", "ctx=stm"
44
+ #else /* standard ANSI-compliant case */
45
+ #define READ_BINARY "rb"
46
+ #define WRITE_BINARY "wb"
47
+ #endif
48
+ #endif
49
+
50
+ #ifndef EXIT_FAILURE /* define exit() codes if not provided */
51
+ #define EXIT_FAILURE 1
52
+ #endif
53
+ #ifndef EXIT_SUCCESS
54
+ #ifdef VMS
55
+ #define EXIT_SUCCESS 1 /* VMS is very nonstandard */
56
+ #else
57
+ #define EXIT_SUCCESS 0
58
+ #endif
59
+ #endif
60
+
61
+ /* Reduce this value if your malloc() can't allocate blocks up to 64K.
62
+ * On DOS, compiling in large model is usually a better solution.
63
+ */
64
+
65
+ #ifndef MAX_COM_LENGTH
66
+ #define MAX_COM_LENGTH 65000L /* must be <= 65533 in any case */
67
+ #endif
68
+
69
+
70
+ /*
71
+ * These macros are used to read the input file and write the output file.
72
+ * To reuse this code in another application, you might need to change these.
73
+ */
74
+
75
+ static FILE * infile; /* input JPEG file */
76
+
77
+ /* Return next input byte, or EOF if no more */
78
+ #define NEXTBYTE() getc(infile)
79
+
80
+ static FILE * outfile; /* output JPEG file */
81
+
82
+ /* Emit an output byte */
83
+ #define PUTBYTE(x) putc((x), outfile)
84
+
85
+
86
+ /* Error exit handler */
87
+ #define ERREXIT(msg) (fprintf(stderr, "%s\n", msg), exit(EXIT_FAILURE))
88
+
89
+
90
+ /* Read one byte, testing for EOF */
91
+ static int
92
+ read_1_byte (void)
93
+ {
94
+ int c;
95
+
96
+ c = NEXTBYTE();
97
+ if (c == EOF)
98
+ ERREXIT("Premature EOF in JPEG file");
99
+ return c;
100
+ }
101
+
102
+ /* Read 2 bytes, convert to unsigned int */
103
+ /* All 2-byte quantities in JPEG markers are MSB first */
104
+ static unsigned int
105
+ read_2_bytes (void)
106
+ {
107
+ int c1, c2;
108
+
109
+ c1 = NEXTBYTE();
110
+ if (c1 == EOF)
111
+ ERREXIT("Premature EOF in JPEG file");
112
+ c2 = NEXTBYTE();
113
+ if (c2 == EOF)
114
+ ERREXIT("Premature EOF in JPEG file");
115
+ return (((unsigned int) c1) << 8) + ((unsigned int) c2);
116
+ }
117
+
118
+
119
+ /* Routines to write data to output file */
120
+
121
+ static void
122
+ write_1_byte (int c)
123
+ {
124
+ PUTBYTE(c);
125
+ }
126
+
127
+ static void
128
+ write_2_bytes (unsigned int val)
129
+ {
130
+ PUTBYTE((val >> 8) & 0xFF);
131
+ PUTBYTE(val & 0xFF);
132
+ }
133
+
134
+ static void
135
+ write_marker (int marker)
136
+ {
137
+ PUTBYTE(0xFF);
138
+ PUTBYTE(marker);
139
+ }
140
+
141
+ static void
142
+ copy_rest_of_file (void)
143
+ {
144
+ int c;
145
+
146
+ while ((c = NEXTBYTE()) != EOF)
147
+ PUTBYTE(c);
148
+ }
149
+
150
+
151
+ /*
152
+ * JPEG markers consist of one or more 0xFF bytes, followed by a marker
153
+ * code byte (which is not an FF). Here are the marker codes of interest
154
+ * in this program. (See jdmarker.c for a more complete list.)
155
+ */
156
+
157
+ #define M_SOF0 0xC0 /* Start Of Frame N */
158
+ #define M_SOF1 0xC1 /* N indicates which compression process */
159
+ #define M_SOF2 0xC2 /* Only SOF0-SOF2 are now in common use */
160
+ #define M_SOF3 0xC3
161
+ #define M_SOF5 0xC5 /* NB: codes C4 and CC are NOT SOF markers */
162
+ #define M_SOF6 0xC6
163
+ #define M_SOF7 0xC7
164
+ #define M_SOF9 0xC9
165
+ #define M_SOF10 0xCA
166
+ #define M_SOF11 0xCB
167
+ #define M_SOF13 0xCD
168
+ #define M_SOF14 0xCE
169
+ #define M_SOF15 0xCF
170
+ #define M_SOI 0xD8 /* Start Of Image (beginning of datastream) */
171
+ #define M_EOI 0xD9 /* End Of Image (end of datastream) */
172
+ #define M_SOS 0xDA /* Start Of Scan (begins compressed data) */
173
+ #define M_COM 0xFE /* COMment */
174
+
175
+
176
+ /*
177
+ * Find the next JPEG marker and return its marker code.
178
+ * We expect at least one FF byte, possibly more if the compressor used FFs
179
+ * to pad the file. (Padding FFs will NOT be replicated in the output file.)
180
+ * There could also be non-FF garbage between markers. The treatment of such
181
+ * garbage is unspecified; we choose to skip over it but emit a warning msg.
182
+ * NB: this routine must not be used after seeing SOS marker, since it will
183
+ * not deal correctly with FF/00 sequences in the compressed image data...
184
+ */
185
+
186
+ static int
187
+ next_marker (void)
188
+ {
189
+ int c;
190
+ int discarded_bytes = 0;
191
+
192
+ /* Find 0xFF byte; count and skip any non-FFs. */
193
+ c = read_1_byte();
194
+ while (c != 0xFF) {
195
+ discarded_bytes++;
196
+ c = read_1_byte();
197
+ }
198
+ /* Get marker code byte, swallowing any duplicate FF bytes. Extra FFs
199
+ * are legal as pad bytes, so don't count them in discarded_bytes.
200
+ */
201
+ do {
202
+ c = read_1_byte();
203
+ } while (c == 0xFF);
204
+
205
+ if (discarded_bytes != 0) {
206
+ fprintf(stderr, "Warning: garbage data found in JPEG file\n");
207
+ }
208
+
209
+ return c;
210
+ }
211
+
212
+
213
+ /*
214
+ * Read the initial marker, which should be SOI.
215
+ * For a JFIF file, the first two bytes of the file should be literally
216
+ * 0xFF M_SOI. To be more general, we could use next_marker, but if the
217
+ * input file weren't actually JPEG at all, next_marker might read the whole
218
+ * file and then return a misleading error message...
219
+ */
220
+
221
+ static int
222
+ first_marker (void)
223
+ {
224
+ int c1, c2;
225
+
226
+ c1 = NEXTBYTE();
227
+ c2 = NEXTBYTE();
228
+ if (c1 != 0xFF || c2 != M_SOI)
229
+ ERREXIT("Not a JPEG file");
230
+ return c2;
231
+ }
232
+
233
+
234
+ /*
235
+ * Most types of marker are followed by a variable-length parameter segment.
236
+ * This routine skips over the parameters for any marker we don't otherwise
237
+ * want to process.
238
+ * Note that we MUST skip the parameter segment explicitly in order not to
239
+ * be fooled by 0xFF bytes that might appear within the parameter segment;
240
+ * such bytes do NOT introduce new markers.
241
+ */
242
+
243
+ static void
244
+ copy_variable (void)
245
+ /* Copy an unknown or uninteresting variable-length marker */
246
+ {
247
+ unsigned int length;
248
+
249
+ /* Get the marker parameter length count */
250
+ length = read_2_bytes();
251
+ write_2_bytes(length);
252
+ /* Length includes itself, so must be at least 2 */
253
+ if (length < 2)
254
+ ERREXIT("Erroneous JPEG marker length");
255
+ length -= 2;
256
+ /* Skip over the remaining bytes */
257
+ while (length > 0) {
258
+ write_1_byte(read_1_byte());
259
+ length--;
260
+ }
261
+ }
262
+
263
+ static void
264
+ skip_variable (void)
265
+ /* Skip over an unknown or uninteresting variable-length marker */
266
+ {
267
+ unsigned int length;
268
+
269
+ /* Get the marker parameter length count */
270
+ length = read_2_bytes();
271
+ /* Length includes itself, so must be at least 2 */
272
+ if (length < 2)
273
+ ERREXIT("Erroneous JPEG marker length");
274
+ length -= 2;
275
+ /* Skip over the remaining bytes */
276
+ while (length > 0) {
277
+ (void) read_1_byte();
278
+ length--;
279
+ }
280
+ }
281
+
282
+
283
+ /*
284
+ * Parse the marker stream until SOFn or EOI is seen;
285
+ * copy data to output, but discard COM markers unless keep_COM is true.
286
+ */
287
+
288
+ static int
289
+ scan_JPEG_header (int keep_COM)
290
+ {
291
+ int marker;
292
+
293
+ /* Expect SOI at start of file */
294
+ if (first_marker() != M_SOI)
295
+ ERREXIT("Expected SOI marker first");
296
+ write_marker(M_SOI);
297
+
298
+ /* Scan miscellaneous markers until we reach SOFn. */
299
+ for (;;) {
300
+ marker = next_marker();
301
+ switch (marker) {
302
+ /* Note that marker codes 0xC4, 0xC8, 0xCC are not, and must not be,
303
+ * treated as SOFn. C4 in particular is actually DHT.
304
+ */
305
+ case M_SOF0: /* Baseline */
306
+ case M_SOF1: /* Extended sequential, Huffman */
307
+ case M_SOF2: /* Progressive, Huffman */
308
+ case M_SOF3: /* Lossless, Huffman */
309
+ case M_SOF5: /* Differential sequential, Huffman */
310
+ case M_SOF6: /* Differential progressive, Huffman */
311
+ case M_SOF7: /* Differential lossless, Huffman */
312
+ case M_SOF9: /* Extended sequential, arithmetic */
313
+ case M_SOF10: /* Progressive, arithmetic */
314
+ case M_SOF11: /* Lossless, arithmetic */
315
+ case M_SOF13: /* Differential sequential, arithmetic */
316
+ case M_SOF14: /* Differential progressive, arithmetic */
317
+ case M_SOF15: /* Differential lossless, arithmetic */
318
+ return marker;
319
+
320
+ case M_SOS: /* should not see compressed data before SOF */
321
+ ERREXIT("SOS without prior SOFn");
322
+ break;
323
+
324
+ case M_EOI: /* in case it's a tables-only JPEG stream */
325
+ return marker;
326
+
327
+ case M_COM: /* Existing COM: conditionally discard */
328
+ if (keep_COM) {
329
+ write_marker(marker);
330
+ copy_variable();
331
+ } else {
332
+ skip_variable();
333
+ }
334
+ break;
335
+
336
+ default: /* Anything else just gets copied */
337
+ write_marker(marker);
338
+ copy_variable(); /* we assume it has a parameter count... */
339
+ break;
340
+ }
341
+ } /* end loop */
342
+ }
343
+
344
+
345
+ /* Command line parsing code */
346
+
347
+ static const char * progname; /* program name for error messages */
348
+
349
+
350
+ static void
351
+ usage (void)
352
+ /* complain about bad command line */
353
+ {
354
+ fprintf(stderr, "wrjpgcom inserts a textual comment in a JPEG file.\n");
355
+ fprintf(stderr, "You can add to or replace any existing comment(s).\n");
356
+
357
+ fprintf(stderr, "Usage: %s [switches] ", progname);
358
+ #ifdef TWO_FILE_COMMANDLINE
359
+ fprintf(stderr, "inputfile outputfile\n");
360
+ #else
361
+ fprintf(stderr, "[inputfile]\n");
362
+ #endif
363
+
364
+ fprintf(stderr, "Switches (names may be abbreviated):\n");
365
+ fprintf(stderr, " -replace Delete any existing comments\n");
366
+ fprintf(stderr, " -comment \"text\" Insert comment with given text\n");
367
+ fprintf(stderr, " -cfile name Read comment from named file\n");
368
+ fprintf(stderr, "Notice that you must put quotes around the comment text\n");
369
+ fprintf(stderr, "when you use -comment.\n");
370
+ fprintf(stderr, "If you do not give either -comment or -cfile on the command line,\n");
371
+ fprintf(stderr, "then the comment text is read from standard input.\n");
372
+ fprintf(stderr, "It can be multiple lines, up to %u characters total.\n",
373
+ (unsigned int) MAX_COM_LENGTH);
374
+ #ifndef TWO_FILE_COMMANDLINE
375
+ fprintf(stderr, "You must specify an input JPEG file name when supplying\n");
376
+ fprintf(stderr, "comment text from standard input.\n");
377
+ #endif
378
+
379
+ exit(EXIT_FAILURE);
380
+ }
381
+
382
+
383
+ static int
384
+ keymatch (char * arg, const char * keyword, int minchars)
385
+ /* Case-insensitive matching of (possibly abbreviated) keyword switches. */
386
+ /* keyword is the constant keyword (must be lower case already), */
387
+ /* minchars is length of minimum legal abbreviation. */
388
+ {
389
+ register int ca, ck;
390
+ register int nmatched = 0;
391
+
392
+ while ((ca = *arg++) != '\0') {
393
+ if ((ck = *keyword++) == '\0')
394
+ return 0; /* arg longer than keyword, no good */
395
+ if (isupper(ca)) /* force arg to lcase (assume ck is already) */
396
+ ca = tolower(ca);
397
+ if (ca != ck)
398
+ return 0; /* no good */
399
+ nmatched++; /* count matched characters */
400
+ }
401
+ /* reached end of argument; fail if it's too short for unique abbrev */
402
+ if (nmatched < minchars)
403
+ return 0;
404
+ return 1; /* A-OK */
405
+ }
406
+
407
+
408
+ /*
409
+ * The main program.
410
+ */
411
+
412
+ int
413
+ main (int argc, char **argv)
414
+ {
415
+ int argn;
416
+ char * arg;
417
+ int keep_COM = 1;
418
+ char * comment_arg = NULL;
419
+ FILE * comment_file = NULL;
420
+ unsigned int comment_length = 0;
421
+ int marker;
422
+
423
+ /* On Mac, fetch a command line. */
424
+ #ifdef USE_CCOMMAND
425
+ argc = ccommand(&argv);
426
+ #endif
427
+
428
+ progname = argv[0];
429
+ if (progname == NULL || progname[0] == 0)
430
+ progname = "wrjpgcom"; /* in case C library doesn't provide it */
431
+
432
+ /* Parse switches, if any */
433
+ for (argn = 1; argn < argc; argn++) {
434
+ arg = argv[argn];
435
+ if (arg[0] != '-')
436
+ break; /* not switch, must be file name */
437
+ arg++; /* advance over '-' */
438
+ if (keymatch(arg, "replace", 1)) {
439
+ keep_COM = 0;
440
+ } else if (keymatch(arg, "cfile", 2)) {
441
+ if (++argn >= argc) usage();
442
+ if ((comment_file = fopen(argv[argn], "r")) == NULL) {
443
+ fprintf(stderr, "%s: can't open %s\n", progname, argv[argn]);
444
+ exit(EXIT_FAILURE);
445
+ }
446
+ } else if (keymatch(arg, "comment", 1)) {
447
+ if (++argn >= argc) usage();
448
+ comment_arg = argv[argn];
449
+ /* If the comment text starts with '"', then we are probably running
450
+ * under MS-DOG and must parse out the quoted string ourselves. Sigh.
451
+ */
452
+ if (comment_arg[0] == '"') {
453
+ comment_arg = (char *) malloc((size_t) MAX_COM_LENGTH);
454
+ if (comment_arg == NULL)
455
+ ERREXIT("Insufficient memory");
456
+ strcpy(comment_arg, argv[argn]+1);
457
+ for (;;) {
458
+ comment_length = (unsigned int) strlen(comment_arg);
459
+ if (comment_length > 0 && comment_arg[comment_length-1] == '"') {
460
+ comment_arg[comment_length-1] = '\0'; /* zap terminating quote */
461
+ break;
462
+ }
463
+ if (++argn >= argc)
464
+ ERREXIT("Missing ending quote mark");
465
+ strcat(comment_arg, " ");
466
+ strcat(comment_arg, argv[argn]);
467
+ }
468
+ }
469
+ comment_length = (unsigned int) strlen(comment_arg);
470
+ } else
471
+ usage();
472
+ }
473
+
474
+ /* Cannot use both -comment and -cfile. */
475
+ if (comment_arg != NULL && comment_file != NULL)
476
+ usage();
477
+ /* If there is neither -comment nor -cfile, we will read the comment text
478
+ * from stdin; in this case there MUST be an input JPEG file name.
479
+ */
480
+ if (comment_arg == NULL && comment_file == NULL && argn >= argc)
481
+ usage();
482
+
483
+ /* Open the input file. */
484
+ if (argn < argc) {
485
+ if ((infile = fopen(argv[argn], READ_BINARY)) == NULL) {
486
+ fprintf(stderr, "%s: can't open %s\n", progname, argv[argn]);
487
+ exit(EXIT_FAILURE);
488
+ }
489
+ } else {
490
+ /* default input file is stdin */
491
+ #ifdef USE_SETMODE /* need to hack file mode? */
492
+ setmode(fileno(stdin), O_BINARY);
493
+ #endif
494
+ #ifdef USE_FDOPEN /* need to re-open in binary mode? */
495
+ if ((infile = fdopen(fileno(stdin), READ_BINARY)) == NULL) {
496
+ fprintf(stderr, "%s: can't open stdin\n", progname);
497
+ exit(EXIT_FAILURE);
498
+ }
499
+ #else
500
+ infile = stdin;
501
+ #endif
502
+ }
503
+
504
+ /* Open the output file. */
505
+ #ifdef TWO_FILE_COMMANDLINE
506
+ /* Must have explicit output file name */
507
+ if (argn != argc-2) {
508
+ fprintf(stderr, "%s: must name one input and one output file\n",
509
+ progname);
510
+ usage();
511
+ }
512
+ if ((outfile = fopen(argv[argn+1], WRITE_BINARY)) == NULL) {
513
+ fprintf(stderr, "%s: can't open %s\n", progname, argv[argn+1]);
514
+ exit(EXIT_FAILURE);
515
+ }
516
+ #else
517
+ /* Unix style: expect zero or one file name */
518
+ if (argn < argc-1) {
519
+ fprintf(stderr, "%s: only one input file\n", progname);
520
+ usage();
521
+ }
522
+ /* default output file is stdout */
523
+ #ifdef USE_SETMODE /* need to hack file mode? */
524
+ setmode(fileno(stdout), O_BINARY);
525
+ #endif
526
+ #ifdef USE_FDOPEN /* need to re-open in binary mode? */
527
+ if ((outfile = fdopen(fileno(stdout), WRITE_BINARY)) == NULL) {
528
+ fprintf(stderr, "%s: can't open stdout\n", progname);
529
+ exit(EXIT_FAILURE);
530
+ }
531
+ #else
532
+ outfile = stdout;
533
+ #endif
534
+ #endif /* TWO_FILE_COMMANDLINE */
535
+
536
+ /* Collect comment text from comment_file or stdin, if necessary */
537
+ if (comment_arg == NULL) {
538
+ FILE * src_file;
539
+ int c;
540
+
541
+ comment_arg = (char *) malloc((size_t) MAX_COM_LENGTH);
542
+ if (comment_arg == NULL)
543
+ ERREXIT("Insufficient memory");
544
+ comment_length = 0;
545
+ src_file = (comment_file != NULL ? comment_file : stdin);
546
+ while ((c = getc(src_file)) != EOF) {
547
+ if (comment_length >= (unsigned int) MAX_COM_LENGTH) {
548
+ fprintf(stderr, "Comment text may not exceed %u bytes\n",
549
+ (unsigned int) MAX_COM_LENGTH);
550
+ exit(EXIT_FAILURE);
551
+ }
552
+ comment_arg[comment_length++] = (char) c;
553
+ }
554
+ if (comment_file != NULL)
555
+ fclose(comment_file);
556
+ }
557
+
558
+ /* Copy JPEG headers until SOFn marker;
559
+ * we will insert the new comment marker just before SOFn.
560
+ * This (a) causes the new comment to appear after, rather than before,
561
+ * existing comments; and (b) ensures that comments come after any JFIF
562
+ * or JFXX markers, as required by the JFIF specification.
563
+ */
564
+ marker = scan_JPEG_header(keep_COM);
565
+ /* Insert the new COM marker, but only if nonempty text has been supplied */
566
+ if (comment_length > 0) {
567
+ write_marker(M_COM);
568
+ write_2_bytes(comment_length + 2);
569
+ while (comment_length > 0) {
570
+ write_1_byte(*comment_arg++);
571
+ comment_length--;
572
+ }
573
+ }
574
+ /* Duplicate the remainder of the source file.
575
+ * Note that any COM markers occuring after SOF will not be touched.
576
+ */
577
+ write_marker(marker);
578
+ copy_rest_of_file();
579
+
580
+ /* All done. */
581
+ exit(EXIT_SUCCESS);
582
+ return 0; /* suppress no-return-value warnings */
583
+ }