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,57 @@
1
+ This file is intended to clarify why and how we are using Unicode in gocr. It's
2
+ probably only interesting if you intend to do something similar in a project of
3
+ yours or to develop gocr.
4
+
5
+ History
6
+ 0.1 initial version
7
+
8
+ ---
9
+ Why to use Unicode? While in this early development stage gocr doesn't
10
+ recognize much more than the ASCII characters, we hope that someday it will
11
+ support many different languages with different character sets; that it will
12
+ recognize mathematical expressions, and so on. Even in this early stage, we are
13
+ trying to support other Latin languages --- accented characters. Since once we
14
+ aren't using ASCII characters anymore we are subject to the character set
15
+ loaded in the machine if we use the 0x80-0xFF characters, we had to solve the
16
+ problem.
17
+
18
+ Against what Andrew Tanenbaum once said, "The good thing about standards is
19
+ that there are so many to choose from", we decided to not invent a new one and
20
+ stick to one of the current; Unicode is the most famous, so we chose it.
21
+
22
+ To my dismay, Unicode's support, at this time, sucks. There are few libraries
23
+ around to deal with it, contrary to what one would expect. The libraries I
24
+ found, though very good, did not provide the kind of support we needed in gocr:
25
+ to work internally with hundreds of different characters. They were all focused
26
+ in handling external files, user interface --- i18n, in short --- something that
27
+ I'm sure is much more needed and used than what gocr needs.
28
+
29
+ That's why we wrote our own Unicode code. We implemented only what we needed,
30
+ and in a practical way to the developer --- composing characters, etc. Since no
31
+ one I know will want the output of their scanned and OCR document in Unicode or
32
+ UTF-8 format (though I hope that one format will eventually be used in every OS
33
+ and computer around, and ASCII will go to a museum, and though gocr can output
34
+ in one of these formats too), we had to output in some format more friendly;
35
+ the choices are existing character maps, TeX, SGML and HTML initially, and who
36
+ knows what else later. Once we can recognize the text and keep the formatting,
37
+ these formats will be desired even more.
38
+
39
+ How to implement it (careful: developer's view)? Fortunatedly, there is partial
40
+ support for it now. The wchar_t type defined in <stddef.h> is a standard (only
41
+ sometimes 16, sometimes 32, perhaps even 64 somewhere). Do we need the libc's
42
+ string functions? If we do, they also exist for wchar_t. Some conversion
43
+ functions were needed: ASCII -> Unicode, Unicode -> everything else.
44
+
45
+ The ASCII -> Unicode conversion (done by the compose() function) is written to
46
+ be called by the ocr engine, when it recognizes a character. You can also use
47
+ the Unicode codes #defined in unicode.h, but the compose function allows a
48
+ simpler use. It's recommended to use the symbols itself for ASCII codes (don't
49
+ need to LATIN_CAPITAL_LETTER_A, use 'A').
50
+
51
+ The Unicode -> etc conversion (done by decode()) is a bit more difficult
52
+ sometimes, since previous symbols may interact with the current one. For
53
+ example, if you're converting to TeX, two characters that are in math mode will
54
+ call two times math mode; for example, "\( \pi \) \( \iota \)", instead of
55
+ "\( \pi \iota \)". Possibly a wider conversion function, decode_text(), which
56
+ deals with the entire text at once should be provided; this function will also
57
+ create headers, etc.
@@ -0,0 +1,166 @@
1
+ #
2
+ # using convert from ImageMagick instead of my own jconv version v0.2.8
3
+ # to crop the example images
4
+ #
5
+ # Version: @(#)ImageMagick 4.1.6 99/01/01 cristy@mystic.es.dupont.com
6
+ # Copyright: Copyright 1999 E. I. du Pont de Nemours and Company
7
+ # ... hmm, convert seems to use a lot of memory, pnmcrop works better
8
+ CROPPG = convert -crop 0x0+1+1
9
+
10
+ .PHONY: all examples fonts install uninstall clean proper proper_old gif jpg png
11
+
12
+ all: examples
13
+
14
+ help:
15
+ echo " make examples # Fig-examples (very fast)"
16
+ echo " make examples_tex # TeX-examples (takes lot of time)"
17
+ echo " make [proper|clean] # remove non source stuff"
18
+
19
+ examples: font21.pcx font22.pcx font23.pcx font24.pcx ex.pcx inverse.pcx\
20
+ rotate45.pcx
21
+ ls -l *.pcx
22
+
23
+ examples_tex: text.pbm font0.pbm font1.pbm font2.pbm polish.pbm man.pbm
24
+ # what about small.pbm? anyone remember?
25
+
26
+ .SUFFIXES: .ps .tex .dvi .fig .pcx .png .jpg .gif .pbm .gz
27
+ .tex.dvi:
28
+ latex $*.tex
29
+
30
+ .dvi.ps:
31
+ dvips -E -o $*.ps $*.dvi # -PAPERSIZE=a4
32
+
33
+ # default font size is 11*mag
34
+ # fig2dev can create pcx directly, but only unpacked and incompatible to xli
35
+ .fig.pcx:
36
+ fig2dev -L ppm -m 3 $< | ppmtopcx -packed >$@
37
+
38
+ .fig.pbm:
39
+ fig2dev -L ppm -m 3 $< | ppmtopgm | pgmtopbm -threshold >$@
40
+
41
+ .fig.png:
42
+ fig2dev -L png -S 4 -m 3 $< >$@
43
+
44
+ .fig.gif:
45
+ fig2dev -L gif -S 4 -m 3 $< >$@
46
+
47
+ .fig.jpg:
48
+ fig2dev -L jpeg -S 4 -q 25 -m 3 $< >$@
49
+
50
+
51
+ # some make versions does not set $< in explicit rules (info autoconf)
52
+ font21.pcx: font2.fig
53
+ fig2dev -L ppm -m 2 font2.fig | ppmtopcx -packed >$@
54
+ # fig2dev -L pcx -m 2 font2.fig $@
55
+
56
+ font22.pcx: font2.fig
57
+ fig2dev -L ppm -m 3 font2.fig | ppmtopcx -packed >$@
58
+ # fig2dev -L pcx -m 3 font2.fig $@
59
+
60
+ font23.jpg: font2.fig
61
+ fig2dev -L jpeg -m 4 font2.fig $@
62
+
63
+ font23.pgm: font2.fig
64
+ fig2dev -L ppm -m 4 font2.fig | ppmtopgm >$@
65
+
66
+ font23.pbm: font2.fig
67
+ fig2dev -L ppm -m 4 font2.fig | ppmtopgm | pgmtopbm >$@
68
+
69
+ font23.gif: font2.fig
70
+ fig2dev -L gif -m 4 font2.fig $@
71
+
72
+ font23.pnm: font23.gif
73
+ giftopnm $< >$@
74
+
75
+ font23.pcx: font2.fig
76
+ fig2dev -L ppm -m 4 font2.fig | ppmtopcx -packed >$@
77
+
78
+ font24.pcx: font2.fig
79
+ fig2dev -L ppm -m 5 font2.fig | ppmtopcx -packed >$@
80
+
81
+ font.tex: font1.tex
82
+ cp font1.tex font.tex
83
+
84
+ # unfortunatly gs always creates a4 from boxed-ps, therefore we must crop it
85
+ # gs options: pgmraw, pcxmono, laserjet
86
+ font0.pbm: font.ps Makefile
87
+ gs -dNOPAUSE -q -r600 -sDEVICE=pbmraw \
88
+ -sOutputFile=font0.pbm - < font.ps
89
+ # $(CROPPG) font0.pbm font0.pbm
90
+ pnmcrop font0.pbm >a.pbm; mv a.pbm font0.pbm
91
+
92
+ font1.pbm: font.ps Makefile
93
+ gs -dNOPAUSE -q -r300 -sDEVICE=pbmraw \
94
+ -sOutputFile=font1.pbm - < font.ps
95
+ # $(CROPPG) font1.pbm font1.pbm
96
+ pnmcrop font1.pbm >a.pbm; mv a.pbm font1.pbm
97
+
98
+ font2.pbm: font.ps Makefile
99
+ gs -dNOPAUSE -q -r150 -sDEVICE=pbmraw \
100
+ -sOutputFile=font2.pbm - < font.ps
101
+ # $(CROPPG) font2.pbm font2.pbm
102
+ pnmcrop font2.pbm >a.pbm; mv a.pbm font2.pbm
103
+
104
+ polish.pbm: polish.ps Makefile
105
+ gs -dNOPAUSE -q -r200 -sDEVICE=pbmraw \
106
+ -sOutputFile=polish.pbm - < polish.ps
107
+ # $(CROPPG) polish.pbm polish.pbm
108
+ pnmcrop polish.pbm >a.pbm; mv a.pbm polish.pbm
109
+
110
+ text.pbm: text.ps Makefile
111
+ gs -dNOPAUSE -q -r150 -sDEVICE=pbmraw \
112
+ -sOutputFile=text.pbm - < text.ps
113
+ # $(CROPPG) text.pbm text.pbm
114
+ pnmcrop text.pbm >a.pbm; mv a.pbm text.pbm
115
+
116
+ small.pbm: small.ps Makefile
117
+ gs -dNOPAUSE -q -r150 -sDEVICE=pbmraw \
118
+ -sOutputFile=small.pbm - < small.ps
119
+ # $(CROPPG) text.pbm text.pbm
120
+ pnmcrop small.pbm >a.pbm; mv a.pbm small.pbm
121
+
122
+ # change this to make a man page to a test.pbm file
123
+ man.pbm: Makefile
124
+ man -Tdvi man >man.dvi
125
+ dvips -o man.ps man.dvi
126
+ gs -dNOPAUSE -q -r300 -sDEVICE=pbmraw \
127
+ -sOutputFile=man.pbm - < man.ps
128
+ # $(CROPPG) man.pbm man.pbm
129
+ pnmcrop man.pbm >a.pbm; mv a.pbm man.pbm
130
+ rm -f man.ps man.dvi
131
+
132
+ fonts: font0.pbm font1.pbm font2.pbm
133
+
134
+ clean:
135
+ -rm -f a *.bak *.aux *.log *.dvi man.ps text.ps font.ps polish.ps *~
136
+
137
+ # two ways to remove examples
138
+ # 1) expand all *.gif *.p?m ... and check if basname.fig exist
139
+ # 2) expand all *.fig and remove basename.{gif,p?m}
140
+ # works only with GnuMake:
141
+ suffix:=%.pbm %.pgm %.ppm %.pcx %.png %.gif %.jpg
142
+ figobj:= $(filter $(suffix),$(wildcard $(patsubst %.fig,%.*,$(wildcard *.fig))))
143
+ # figobj:= $(foreach var,$(wildcard *.p[bgp]m *.pcx *.png *.gif *.jpg),$(if $(wildcard $(basename $(var)).fig),$(var)))
144
+ # shell:
145
+ proper: clean
146
+ -rm -f ./font2[1234].{p[bgp]m,pcx,png,gif,jpg}
147
+ -rm -f $(figobj)
148
+
149
+ proper_old:
150
+ # -rm -f ./{ex,inverse,rotate45,font2[1234]}.{p[bgpna]m,pcx,png,gif,jpg}
151
+ -for xx in *.fig; do\
152
+ rm -f ./$$(echo $${xx} | sed 's/.fig$$//'){,1,2,3,4}.{p[bgpn]m,pcx,png,gif,jpg} 2>/dev/null;\
153
+ done
154
+
155
+ gif: $(patsubst %.fig,%.gif,$(wildcard *.fig))
156
+ ls -l *.gif
157
+
158
+ png: $(patsubst %.fig,%.png,$(wildcard *.fig))
159
+ ls -l *.png
160
+
161
+ jpg: $(patsubst %.fig,%.jpg,$(wildcard *.fig))
162
+ ls -l *.jpg
163
+
164
+ install:
165
+
166
+ uninstall:
@@ -0,0 +1,2 @@
1
+ ABCD abcd EFGHI efghi JKLMN jklmn OPQR opqr
2
+ STUVW stuvw XYZ xyz 12345 67890 !?'&/\=+-*#(){}[]<>
@@ -0,0 +1,2 @@
1
+ ABCD abcd EFGHI efghi JKLMN jklmn OPQR opqr
2
+ STUVW stuvw XYZ xyz 12345 67890 !?'&/\=+-*#(){}[]<>
@@ -0,0 +1,2 @@
1
+ ABCD abcd EFGHI efghi JKLMN jklmn OPQR opqr
2
+ STUVW stuvw XYZ xyz 12345 67890 !?'&/\=+-*#(){}[]<>
@@ -0,0 +1,166 @@
1
+ #
2
+ # using convert from ImageMagick instead of my own jconv version v0.2.8
3
+ # to crop the example images
4
+ #
5
+ # Version: @(#)ImageMagick 4.1.6 99/01/01 cristy@mystic.es.dupont.com
6
+ # Copyright: Copyright 1999 E. I. du Pont de Nemours and Company
7
+ # ... hmm, convert seems to use a lot of memory, pnmcrop works better
8
+ CROPPG = convert -crop 0x0+1+1
9
+
10
+ .PHONY: all examples fonts install uninstall clean proper proper_old gif jpg png
11
+
12
+ all: examples
13
+
14
+ help:
15
+ echo " make examples # Fig-examples (very fast)"
16
+ echo " make examples_tex # TeX-examples (takes lot of time)"
17
+ echo " make [proper|clean] # remove non source stuff"
18
+
19
+ examples: font21.pcx font22.pcx font23.pcx font24.pcx ex.pcx inverse.pcx\
20
+ rotate45.pcx
21
+ ls -l *.pcx
22
+
23
+ examples_tex: text.pbm font0.pbm font1.pbm font2.pbm polish.pbm man.pbm
24
+ # what about small.pbm? anyone remember?
25
+
26
+ .SUFFIXES: .ps .tex .dvi .fig .pcx .png .jpg .gif .pbm .gz
27
+ .tex.dvi:
28
+ latex $*.tex
29
+
30
+ .dvi.ps:
31
+ dvips -E -o $*.ps $*.dvi # -PAPERSIZE=a4
32
+
33
+ # default font size is 11*mag
34
+ # fig2dev can create pcx directly, but only unpacked and incompatible to xli
35
+ .fig.pcx:
36
+ fig2dev -L ppm -m 3 $< | ppmtopcx -packed >$@
37
+
38
+ .fig.pbm:
39
+ fig2dev -L ppm -m 3 $< | ppmtopgm | pgmtopbm -threshold >$@
40
+
41
+ .fig.png:
42
+ fig2dev -L png -S 4 -m 3 $< >$@
43
+
44
+ .fig.gif:
45
+ fig2dev -L gif -S 4 -m 3 $< >$@
46
+
47
+ .fig.jpg:
48
+ fig2dev -L jpeg -S 4 -q 25 -m 3 $< >$@
49
+
50
+
51
+ # some make versions does not set $< in explicit rules (info autoconf)
52
+ font21.pcx: font2.fig
53
+ fig2dev -L ppm -m 2 font2.fig | ppmtopcx -packed >$@
54
+ # fig2dev -L pcx -m 2 font2.fig $@
55
+
56
+ font22.pcx: font2.fig
57
+ fig2dev -L ppm -m 3 font2.fig | ppmtopcx -packed >$@
58
+ # fig2dev -L pcx -m 3 font2.fig $@
59
+
60
+ font23.jpg: font2.fig
61
+ fig2dev -L jpeg -m 4 font2.fig $@
62
+
63
+ font23.pgm: font2.fig
64
+ fig2dev -L ppm -m 4 font2.fig | ppmtopgm >$@
65
+
66
+ font23.pbm: font2.fig
67
+ fig2dev -L ppm -m 4 font2.fig | ppmtopgm | pgmtopbm >$@
68
+
69
+ font23.gif: font2.fig
70
+ fig2dev -L gif -m 4 font2.fig $@
71
+
72
+ font23.pnm: font23.gif
73
+ giftopnm $< >$@
74
+
75
+ font23.pcx: font2.fig
76
+ fig2dev -L ppm -m 4 font2.fig | ppmtopcx -packed >$@
77
+
78
+ font24.pcx: font2.fig
79
+ fig2dev -L ppm -m 5 font2.fig | ppmtopcx -packed >$@
80
+
81
+ font.tex: font1.tex
82
+ cp font1.tex font.tex
83
+
84
+ # unfortunatly gs always creates a4 from boxed-ps, therefore we must crop it
85
+ # gs options: pgmraw, pcxmono, laserjet
86
+ font0.pbm: font.ps Makefile
87
+ gs -dNOPAUSE -q -r600 -sDEVICE=pbmraw \
88
+ -sOutputFile=font0.pbm - < font.ps
89
+ # $(CROPPG) font0.pbm font0.pbm
90
+ pnmcrop font0.pbm >a.pbm; mv a.pbm font0.pbm
91
+
92
+ font1.pbm: font.ps Makefile
93
+ gs -dNOPAUSE -q -r300 -sDEVICE=pbmraw \
94
+ -sOutputFile=font1.pbm - < font.ps
95
+ # $(CROPPG) font1.pbm font1.pbm
96
+ pnmcrop font1.pbm >a.pbm; mv a.pbm font1.pbm
97
+
98
+ font2.pbm: font.ps Makefile
99
+ gs -dNOPAUSE -q -r150 -sDEVICE=pbmraw \
100
+ -sOutputFile=font2.pbm - < font.ps
101
+ # $(CROPPG) font2.pbm font2.pbm
102
+ pnmcrop font2.pbm >a.pbm; mv a.pbm font2.pbm
103
+
104
+ polish.pbm: polish.ps Makefile
105
+ gs -dNOPAUSE -q -r200 -sDEVICE=pbmraw \
106
+ -sOutputFile=polish.pbm - < polish.ps
107
+ # $(CROPPG) polish.pbm polish.pbm
108
+ pnmcrop polish.pbm >a.pbm; mv a.pbm polish.pbm
109
+
110
+ text.pbm: text.ps Makefile
111
+ gs -dNOPAUSE -q -r150 -sDEVICE=pbmraw \
112
+ -sOutputFile=text.pbm - < text.ps
113
+ # $(CROPPG) text.pbm text.pbm
114
+ pnmcrop text.pbm >a.pbm; mv a.pbm text.pbm
115
+
116
+ small.pbm: small.ps Makefile
117
+ gs -dNOPAUSE -q -r150 -sDEVICE=pbmraw \
118
+ -sOutputFile=small.pbm - < small.ps
119
+ # $(CROPPG) text.pbm text.pbm
120
+ pnmcrop small.pbm >a.pbm; mv a.pbm small.pbm
121
+
122
+ # change this to make a man page to a test.pbm file
123
+ man.pbm: Makefile
124
+ man -Tdvi man >man.dvi
125
+ dvips -o man.ps man.dvi
126
+ gs -dNOPAUSE -q -r300 -sDEVICE=pbmraw \
127
+ -sOutputFile=man.pbm - < man.ps
128
+ # $(CROPPG) man.pbm man.pbm
129
+ pnmcrop man.pbm >a.pbm; mv a.pbm man.pbm
130
+ rm -f man.ps man.dvi
131
+
132
+ fonts: font0.pbm font1.pbm font2.pbm
133
+
134
+ clean:
135
+ -rm -f a *.bak *.aux *.log *.dvi man.ps text.ps font.ps polish.ps *~
136
+
137
+ # two ways to remove examples
138
+ # 1) expand all *.gif *.p?m ... and check if basname.fig exist
139
+ # 2) expand all *.fig and remove basename.{gif,p?m}
140
+ # works only with GnuMake:
141
+ suffix:=%.pbm %.pgm %.ppm %.pcx %.png %.gif %.jpg
142
+ figobj:= $(filter $(suffix),$(wildcard $(patsubst %.fig,%.*,$(wildcard *.fig))))
143
+ # figobj:= $(foreach var,$(wildcard *.p[bgp]m *.pcx *.png *.gif *.jpg),$(if $(wildcard $(basename $(var)).fig),$(var)))
144
+ # shell:
145
+ proper: clean
146
+ -rm -f ./font2[1234].{p[bgp]m,pcx,png,gif,jpg}
147
+ -rm -f $(figobj)
148
+
149
+ proper_old:
150
+ # -rm -f ./{ex,inverse,rotate45,font2[1234]}.{p[bgpna]m,pcx,png,gif,jpg}
151
+ -for xx in *.fig; do\
152
+ rm -f ./$$(echo $${xx} | sed 's/.fig$$//'){,1,2,3,4}.{p[bgpn]m,pcx,png,gif,jpg} 2>/dev/null;\
153
+ done
154
+
155
+ gif: $(patsubst %.fig,%.gif,$(wildcard *.fig))
156
+ ls -l *.gif
157
+
158
+ png: $(patsubst %.fig,%.png,$(wildcard *.fig))
159
+ ls -l *.png
160
+
161
+ jpg: $(patsubst %.fig,%.jpg,$(wildcard *.fig))
162
+ ls -l *.jpg
163
+
164
+ install:
165
+
166
+ uninstall:
@@ -0,0 +1,20 @@
1
+ #FIG 3.2
2
+ Landscape
3
+ Center
4
+ Metric
5
+ A4
6
+ 100.00
7
+ Single
8
+ -2
9
+ 1200 2
10
+ 2 2 0 1 7 7 60 0 20 0.000 0 0 -1 0 0 5
11
+ 1125 2880 4365 2880 4365 1485 1125 1485 1125 2880
12
+ 2 2 0 1 7 0 70 0 10 0.000 0 0 -1 0 0 5
13
+ 900 450 4500 450 4500 3150 900 3150 900 450
14
+ 2 2 0 1 2 2 55 0 20 0.000 0 0 -1 0 0 5
15
+ 2475 2700 4185 2700 4185 1935 2475 1935 2475 2700
16
+ 4 0 6 50 0 0 20 0.0000 4 270 720 1350 2160 step 2\001
17
+ 4 0 0 60 0 16 20 0.0000 4 225 3015 990 360 outer text Helvetica 20\001
18
+ 4 0 0 50 0 0 20 0.0000 4 195 3090 1170 1080 Inner-1 Times-Roman 20\001
19
+ 4 0 4 50 0 0 20 0.0000 4 195 2685 1305 1800 This is a box in a box.\001
20
+ 4 0 1 50 0 0 20 0.0000 4 270 1245 2700 2385 step 3 box\001
@@ -0,0 +1,16 @@
1
+ #FIG 3.2
2
+ Landscape
3
+ Center
4
+ Metric
5
+ A4
6
+ 100.00
7
+ Single
8
+ -2
9
+ 1200 2
10
+ 2 1 0 1 0 7 100 0 -1 0.000 0 0 -1 0 0 2
11
+ 360 225 585 225
12
+ 2 1 0 1 0 7 100 0 -1 0.000 0 0 -1 0 0 2
13
+ 4500 1305 4680 1305
14
+ 4 0 0 100 0 0 12 0.0000 4 225 3750 450 495 Special chars: \340\341\342\343\344\345\346\347 \300 \305 \306 \337 &$#% \370\330\253\273\242\265\001
15
+ 4 0 0 100 0 16 12 0.0000 4 225 4245 450 765 Special chars: \340\341\342\343\344\345\346\347 \300 \305 \306 \337 &$#% \370\330\253\273\242\265\001
16
+ 4 0 0 100 0 12 12 0.0000 4 210 4515 450 1080 Special chars: \340\341\342\343\344\345\346\347 \300 \305 \306 \337 &$#% \370\330\253\273\242\265\001
@@ -0,0 +1,22 @@
1
+ % test font converted to pgm file for testing OCR software
2
+ \documentstyle[german,12pt]{article}
3
+ \topmargin=-25mm \textheight=140mm
4
+ \oddsidemargin=-10mm \evensidemargin=-10mm \textwidth=160mm
5
+ \parindent0mm \pagestyle{empty}
6
+ %\renewcommand{\baselinestretch}{2.0}
7
+ \begin{document}
8
+ \def\f{
9
+ \\ ABCDEF abcdef, MNOPQR mnopq XYZ"A"O"U. !?-+=/ '' `` ft ff
10
+ \\ GHIJKL ghijkl; STUVWr stuvw xyz"a"o"u\'a\`a \3 (01234 56789) $<>$ \&\$
11
+ }
12
+ 12pt TeX-font - generated for OCR testing - Mai99 JS
13
+ \\ \rm Roman \tt Typewriter \it Italic \bf Bold-Face
14
+ \sl Slanted \sc Small-Caps \sf Sans-Serif
15
+ \rm \f
16
+ \tt \f
17
+ \it \f
18
+ \bf \f
19
+ \sl \f
20
+ \sc \f
21
+ \sf \f
22
+ \end{document}