1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968
|
open Pdfutil
open Pdfio
let debug = ref false
(* Zlib inflate level *)
let flate_level = ref 6
(* Get the next non-whitespace character in a stream. *)
let rec get_streamchar s =
match s.input_byte () with
| x when x = no_more ->
raise End_of_file
| x ->
let chr = Char.unsafe_chr x in
if Pdf.is_whitespace chr then get_streamchar s else chr
(* Raised if there was bad data. *)
exception Couldn'tDecodeStream of string
(* Raised if the codec was not supported. *)
exception DecodeNotSupported of string
(* ASCIIHex *)
(* We build a list of decoded characters from the input stream, and then
convert this to the output stream. *)
let encode_ASCIIHex stream =
let size = bytes_size stream in
let stream' = mkbytes (size * 2 + 1) in
bset stream' (size * 2) (int_of_char '>'); (* ['>'] is end-of-data *)
for p = 0 to size - 1 do
let chars = explode (Printf.sprintf "%02X" (bget stream p)) in
bset stream' (p * 2) (int_of_char (hd chars));
bset stream' (p * 2 + 1) (int_of_char (hd (tl chars)))
done;
stream'
(* Decode ASCIIHex *)
(* Calulate a character from two hex digits a and b *)
let char_of_hex a b =
char_of_int (int_of_string ("0x" ^ string_of_char a ^ string_of_char b))
let decode_ASCIIHex i =
let output = ref []
in let enddata = ref false in
try
while not !enddata do
let b = get_streamchar i in
let b' = get_streamchar i in
match b, b' with
| '>', _ ->
(* Rewind for inline images *)
set enddata; rewind i
| c, '>'
when
(c >= '0' && c <= '9') ||
(c >= 'a' && c <= 'f') ||
(c >= 'A' && c <= 'F')
->
output =| char_of_hex c '0';
set enddata
| c, c'
when
((c >= '0' && c <= '9') ||
(c >= 'a' && c <= 'f') ||
(c >= 'A' && c <= 'F'))
&&
((c' >= '0' && c' <= '9') ||
(c' >= 'a' && c' <= 'f') ||
(c' >= 'A' && c' <= 'F'))
->
output =| char_of_hex c c'
| _ -> raise Not_found (*r Bad data. *)
done;
bytes_of_charlist (rev !output)
with
| End_of_file ->
(* We ran out of data. This is a normal exit. *)
bytes_of_charlist (rev !output)
| Not_found ->
raise (Couldn'tDecodeStream "ASCIIHex")
(* ASCII85 *)
let decode_5bytes c1 c2 c3 c4 c5 n o =
let d x p = i32mul (i32ofi (int_of_char x - 33)) (i32ofi (pow p 85)) in
let total = i32add (i32add (d c1 4) (d c2 3)) (i32add (d c3 2) (i32add (d c4 1) (d c5 0))) in
let extract t = char_of_int (i32toi (lsr32 (lsl32 total (24 - t)) 24)) in
match n with
| 4 -> extract 0::extract 8::extract 16::extract 24::o
| 3 -> extract 8::extract 16::extract 24::o
| 2 -> extract 16::extract 24::o
| 1 -> extract 24::o
| _ -> o
let conso cs o =
match cs with
| [c1; c2; c3; c4; c5] -> decode_5bytes c1 c2 c3 c4 c5 4 o
| [c1; c2; c3; c4] -> decode_5bytes c1 c2 c3 c4 '~' 3 o
| [c1; c2; c3] -> decode_5bytes c1 c2 c3 '~' '>' 2 o
| [c1; c2] -> decode_5bytes c1 c2 '~' '>' '!' 1 o
| _ -> o
let rec decode_ASCII85_i i cs o =
match get_streamchar i with
| 'z' ->
decode_ASCII85_i i [] ('\000'::'\000'::'\000'::'\000'::conso (rev cs) o)
| '~' ->
bytes_of_charlist (rev (conso (rev cs) o))
| c when c >= '!' && c <= 'u' ->
if length cs = 5
then (decode_ASCII85_i i [c] (conso (rev cs) o))
else (decode_ASCII85_i i (c::cs) o)
| _ ->
raise (Pdf.PDFError "decode_ASCII85_i")
let decode_ASCII85 i =
try decode_ASCII85_i i [] [] with
_ -> raise (Pdf.PDFError "Error decoding ASCII85 stream")
(* Encode a single symbol set. *)
let encode_4bytes = function
| [b1; b2; b3; b4] ->
let ( * ), ( - ), ( / ), rem = Int64.mul, Int64.sub, Int64.div, Int64.rem in
let numbers =
[i64ofi (int_of_char b1) * i64ofi (pow 3 256);
i64ofi (int_of_char b2) * i64ofi (pow 2 256);
i64ofi (int_of_char b3) * i64ofi (pow 1 256);
i64ofi (int_of_char b4) * i64ofi (pow 0 256)]
in
let t = fold_left Int64.add Int64.zero numbers in
let one85 = i64ofi (pow 1 85) in
let two85 = i64ofi (pow 2 85) in
let three85 = i64ofi (pow 3 85) in
let zero85 = i64ofi (pow 0 85) in
let four85 = i64ofi (pow 4 85) in
let t, c5 = t - rem t one85, rem t one85 / zero85 in
let t, c4 = t - rem t two85, rem t two85 / one85 in
let t, c3 = t - rem t three85, rem t three85 / two85 in
let t, c2 = t - rem t four85, rem t four85 / three85 in
i64toi (t / four85), i64toi c2, i64toi c3, i64toi c4, i64toi c5
| _ -> assert false
(* Encode a stream. *)
let encode_ASCII85 stream =
let output = ref []
in let enddata = ref false
in let istream = input_of_bytes stream in
while not !enddata do
let b1 = istream.input_char () in
let b2 = istream.input_char () in
let b3 = istream.input_char () in
let b4 = istream.input_char () in
match b1, b2, b3, b4 with
| Some b1, Some b2, Some b3, Some b4 ->
output := [b1; b2; b3; b4]::!output
| Some b1, Some b2, Some b3, None ->
set enddata; output := [b1; b2; b3]::!output
| Some b1, Some b2, None, None ->
set enddata; output := [b1; b2]::!output
| Some b1, None, None, None ->
set enddata; output := [b1]::!output
| None, _, _, _ -> set enddata
| _ -> assert false
done;
let fix k = char_of_int (k + 33) in
let charlists' =
rev_map
(fun l ->
let len = length l in
if len < 4
then
let l' = l @ (many '\000' (4 - len)) in
let c1, c2, c3, c4, c5 = encode_4bytes l' in
take [fix c1; fix c2; fix c3; fix c4; fix c5] (len + 1)
else
let c1, c2, c3, c4, c5 = encode_4bytes l in
if c1 + c2 + c3 + c4 + c5 = 0
then ['z']
else [fix c1; fix c2; fix c3; fix c4; fix c5])
!output
in
bytes_of_charlist (flatten charlists' @ ['~'; '>'])
(* Flate *)
(* Make a bytes from a list of strings by taking the contents, in order
from the items, in order. *)
let rec total_length n = function
| [] -> n
| h::t -> total_length (n + String.length h) t
let bytes_of_strings_rev strings =
let len = total_length 0 strings in
let s = mkbytes len
and pos = ref (len - 1) in
iter
(fun str ->
for x = String.length str - 1 downto 0 do
bset_unsafe s !pos (int_of_char (String.unsafe_get str x));
decr pos
done)
strings;
s
let flate_process f data =
let strings = ref []
and pos = ref 0
and inlength = bytes_size data in
let input =
(fun buf ->
let s = Bytes.length buf in
let towrite = min (inlength - !pos) s in
for x = 0 to towrite - 1 do
Bytes.unsafe_set
buf x (Char.unsafe_chr (bget_unsafe data !pos));
incr pos
done;
towrite)
and output =
(fun buf length ->
if length > 0 then strings =| Bytes.sub_string buf 0 length)
in
f input output;
bytes_of_strings_rev !strings
(* This is for reading zlib compressed things in streams where we need to
commence lexing straightaway afterwards. And so, we can only supply one byte at
a time, continuing until zlib has finished uncompressing. *)
let decode_flate_input i =
let strings = ref [] in
let input =
(fun buf ->
let s = Bytes.length buf in
if s > 0 then
begin
match i.input_byte () with
| x when x = no_more -> raise End_of_file
| x -> Bytes.unsafe_set buf 0 (char_of_int x); 1
end
else 0)
and output =
(fun buf length ->
if length > 0 then strings =| Bytes.sub_string buf 0 length)
in
Pdfflate.uncompress input output;
bytes_of_strings_rev !strings
(* js_of_ocaml only *)
external camlpdf_caml_zlib_compress : string -> string = "camlpdf_caml_zlib_compress"
external camlpdf_caml_zlib_decompress : string -> string = "camlpdf_caml_zlib_decompress"
let is_js =
match Sys.backend_type with Sys.Other "js_of_ocaml" -> true | _ -> false
let encode_flate stream =
if is_js then
bytes_of_string (camlpdf_caml_zlib_compress (string_of_bytes stream))
else
flate_process (Pdfflate.compress ~level:!flate_level) stream
let debug_stream_serial = ref 0
let debug_stream s =
Pdfe.log "First 50 bytes\n";
for x = 0 to 50 do
Pdfe.log (Printf.sprintf "%C = %i\n" (char_of_int (bget s x)) (bget s x))
done
(*(* Write stream to current directory as <length>_<serial>.zlib *)
let name = string_of_int (bytes_size s) ^ "_" ^ string_of_int !debug_stream_serial ^ ".zlib" in
Pdfe.log (Printf.sprintf "Writing %s\n" name);
debug_stream_serial += 1;
let fh = open_out_bin name in
for x = 0 to bytes_size s - 1 do
output_byte fh (bget s x)
done;
close_out fh*)
let decode_flate stream =
if bytes_size stream = 0 then mkbytes 0 else (* Accept the empty stream. *)
try
if is_js then
bytes_of_string (camlpdf_caml_zlib_decompress (string_of_bytes stream))
else
flate_process Pdfflate.uncompress stream
with
Pdfflate.Error (a, b) ->
if !debug then debug_stream stream;
raise (Couldn'tDecodeStream ("Flate" ^ " " ^ a ^ " " ^ b ^ " length " ^ string_of_int (bytes_size stream)))
(* LZW *)
(* Decode LZW. *)
let decode_lzw early i =
let prefix_code = Array.make 8192 0
and append_character = Array.make 8192 0
and bit_count = ref 0
and bit_buffer = ref 0l
and endflush = ref 4
and code_length = ref 9
and next_code = ref 258
and new_code = ref 0
and old_code = ref 256
and character = ref 0 in
let rec decode_string code str =
if code > 255 then
decode_string prefix_code.(code) (append_character.(code)::str)
else
code::str
and input_code stream =
while !bit_count <= 24 do
let streambyte =
match stream.input_byte () with
| b when b = no_more ->
if !endflush = 0 then raise End_of_file else (decr endflush; 0)
| b -> b
in
bit_buffer :=
lor32 !bit_buffer (lsl32 (i32ofi streambyte) (24 - !bit_count));
bit_count += 8
done;
let result = Int32.to_int (lsr32 !bit_buffer (32 - !code_length)) in
bit_buffer := lsl32 !bit_buffer !code_length;
bit_count -= !code_length;
result
and strip_cleartable_codes stream =
while !old_code = 256 do
old_code := input_code stream
done
and reset_table () =
next_code := 258;
code_length := 9;
old_code := 256
in
bit_count := 0; bit_buffer := 0l;
endflush := 4; reset_table ();
let outstream, data = input_output_of_bytes 16034
and finished = ref false in
strip_cleartable_codes i;
match !old_code with
| 257 -> mkbytes 0
| _ ->
character := !old_code;
outstream.output_byte !old_code;
while not !finished do
new_code := input_code i;
match !new_code with
| 257 -> set finished
| 256 ->
reset_table ();
set_array prefix_code 0;
set_array append_character 0;
strip_cleartable_codes i;
character := !old_code;
outstream.output_byte !old_code
| _ ->
let chars =
if !new_code >= !next_code
then (decode_string !old_code []) @ [!character]
else decode_string !new_code []
in
character := hd chars;
iter outstream.output_byte chars;
prefix_code.(!next_code) <- !old_code;
append_character.(!next_code) <- !character;
incr next_code;
old_code := !new_code;
match !next_code + early with
| 512 | 1024 | 2048 -> incr code_length
| _ -> ()
done;
extract_bytes_from_input_output outstream data
(* CCITT *)
(* Decode a CCITT-encoded stream. Parameter names:
eol -- /EndOfLine
eba -- /EncodedByteAlign
eob -- /EndOfBlock
bone -- /BlackIs1
dra -- /DamagedRowsBeforeError
c -- /Columns
r -- /Rows
*)
let rec write_white_code = function
| -1 -> [0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 1]
| 0 -> [0; 0; 1; 1; 0; 1; 0; 1]
| 1 -> [0; 0; 0; 1; 1; 1]
| 2 -> [0; 1; 1; 1]
| 3 -> [1; 0; 0; 0]
| 4 -> [1; 0; 1; 1]
| 5 -> [1; 1; 0; 0]
| 6 -> [1; 1; 1; 0]
| 7 -> [1; 1; 1; 1]
| 8 -> [1; 0; 0; 1; 1]
| 9 -> [1; 0; 1; 0; 0]
| 10 -> [0; 0; 1; 1; 1]
| 11 -> [0; 1; 0; 0; 0]
| 12 -> [0; 0; 1; 0; 0; 0]
| 13 -> [0; 0; 0; 0; 1; 1]
| 14 -> [1; 1; 0; 1; 0; 0]
| 15 -> [1; 1; 0; 1; 0; 1]
| 16 -> [1; 0; 1; 0; 1; 0]
| 17 -> [1; 0; 1; 0; 1; 1]
| 18 -> [0; 1; 0; 0; 1; 1; 1]
| 19 -> [0; 0; 0; 1; 1; 0; 0]
| 20 -> [0; 0; 0; 1; 0; 0; 0]
| 21 -> [0; 0; 1; 0; 1; 1; 1]
| 22 -> [0; 0; 0; 0; 0; 1; 1]
| 23 -> [0; 0; 0; 0; 1; 0; 0]
| 24 -> [0; 1; 0; 1; 0; 0; 0]
| 25 -> [0; 1; 0; 1; 0; 1; 1]
| 26 -> [0; 0; 1; 0; 0; 1; 1]
| 27 -> [0; 1; 0; 0; 1; 0; 0]
| 28 -> [0; 0; 1; 1; 0; 0; 0]
| 29 -> [0; 0; 0; 0; 0; 0; 1; 0]
| 30 -> [0; 0; 0; 0; 0; 0; 1; 1]
| 31 -> [0; 0; 0; 1; 1; 0; 1; 0]
| 32 -> [0; 0; 0; 1; 1; 0; 1; 1]
| 33 -> [0; 0; 0; 1; 0; 0; 1; 0]
| 34 -> [0; 0; 0; 1; 0; 0; 1; 1]
| 35 -> [0; 0; 0; 1; 0; 1; 0; 0]
| 36 -> [0; 0; 0; 1; 0; 1; 0; 1]
| 37 -> [0; 0; 0; 1; 0; 1; 1; 0]
| 38 -> [0; 0; 0; 1; 0; 1; 1; 1]
| 39 -> [0; 0; 1; 0; 1; 0; 0; 0]
| 40 -> [0; 0; 1; 0; 1; 0; 0; 1]
| 41 -> [0; 0; 1; 0; 1; 0; 1; 0]
| 42 -> [0; 0; 1; 0; 1; 0; 1; 1]
| 43 -> [0; 0; 1; 0; 1; 1; 0; 0]
| 44 -> [0; 0; 1; 0; 1; 1; 0; 1]
| 45 -> [0; 0; 0; 0; 0; 1; 0; 0]
| 46 -> [0; 0; 0; 0; 0; 1; 0; 1]
| 47 -> [0; 0; 0; 0; 1; 0; 1; 0]
| 48 -> [0; 0; 0; 0; 1; 0; 1; 1]
| 49 -> [0; 1; 0; 1; 0; 0; 1; 0]
| 50 -> [0; 1; 0; 1; 0; 0; 1; 1]
| 51 -> [0; 1; 0; 1; 0; 1; 0; 0]
| 52 -> [0; 1; 0; 1; 0; 1; 0; 1]
| 53 -> [0; 0; 1; 0; 0; 1; 0; 0]
| 54 -> [0; 0; 1; 0; 0; 1; 0; 1]
| 55 -> [0; 1; 0; 1; 1; 0; 0; 0]
| 56 -> [0; 1; 0; 1; 1; 0; 0; 1]
| 57 -> [0; 1; 0; 1; 1; 0; 1; 0]
| 58 -> [0; 1; 0; 1; 1; 0; 1; 1]
| 59 -> [0; 1; 0; 0; 1; 0; 1; 0]
| 60 -> [0; 1; 0; 0; 1; 0; 1; 1]
| 61 -> [0; 0; 1; 1; 0; 0; 1; 0]
| 62 -> [0; 0; 1; 1; 0; 0; 1; 1]
| 63 -> [0; 0; 1; 1; 0; 1; 0; 0]
| n when n >= 2560 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 1; 1; 1] @ write_white_code (n - 2560)
| n when n >= 2496 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 1; 1; 0] @ write_white_code (n - 2496)
| n when n >= 2432 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 1] @ write_white_code (n - 2432)
| n when n >= 2368 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 0] @ write_white_code (n - 2368)
| n when n >= 2304 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 1; 1; 1] @ write_white_code (n - 2304)
| n when n >= 2240 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 1; 1; 0] @ write_white_code (n - 2240)
| n when n >= 2176 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 1; 0; 1] @ write_white_code (n - 2176)
| n when n >= 2112 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 1; 0; 0] @ write_white_code (n - 2112)
| n when n >= 2048 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 0; 1; 1] @ write_white_code (n - 2048)
| n when n >= 1984 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 0; 1; 0] @ write_white_code (n - 1984)
| n when n >= 1920 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 0; 1] @ write_white_code (n - 1920)
| n when n >= 1856 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 0; 0] @ write_white_code (n - 1856)
| n when n >= 1792 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 0; 0] @ write_white_code (n - 1792)
| n when n >= 1728 -> [0; 1; 0; 0; 1; 1; 0; 1; 1] @ write_white_code (n - 1728)
| n when n >= 1664 -> [0; 1; 1; 0; 0; 0] @ write_white_code (n - 1664)
| n when n >= 1600 -> [0; 1; 0; 0; 1; 1; 0; 1; 0] @ write_white_code (n - 1600)
| n when n >= 1536 -> [0; 1; 0; 0; 1; 1; 0; 0; 1] @ write_white_code (n - 1536)
| n when n >= 1472 -> [0; 1; 0; 0; 1; 1; 0; 0; 0] @ write_white_code (n - 1472)
| n when n >= 1408 -> [0; 1; 1; 0; 1; 1; 0; 1; 1] @ write_white_code (n - 1408)
| n when n >= 1344 -> [0; 1; 1; 0; 1; 1; 0; 1; 0] @ write_white_code (n - 1344)
| n when n >= 1280 -> [0; 1; 1; 0; 1; 1; 0; 0; 1] @ write_white_code (n - 1280)
| n when n >= 1216 -> [0; 1; 1; 0; 1; 1; 0; 0; 0] @ write_white_code (n - 1216)
| n when n >= 1152 -> [0; 1; 1; 0; 1; 0; 1; 1; 1] @ write_white_code (n - 1152)
| n when n >= 1088 -> [0; 1; 1; 0; 1; 0; 1; 1; 0] @ write_white_code (n - 1088)
| n when n >= 1024 -> [0; 1; 1; 0; 1; 0; 1; 0; 1] @ write_white_code (n - 1024)
| n when n >= 960 -> [0; 1; 1; 0; 1; 0; 1; 0; 0] @ write_white_code (n - 960)
| n when n >= 896 -> [0; 1; 1; 0; 1; 0; 0; 1; 1] @ write_white_code (n - 896)
| n when n >= 832 -> [0; 1; 1; 0; 1; 0; 0; 1; 0] @ write_white_code (n - 832)
| n when n >= 768 -> [0; 1; 1; 0; 0; 1; 1; 0; 1] @ write_white_code (n - 768)
| n when n >= 704 -> [0; 1; 1; 0; 0; 1; 1; 0; 0] @ write_white_code (n - 704)
| n when n >= 640 -> [0; 1; 1; 0; 0; 1; 1; 1] @ write_white_code (n - 640)
| n when n >= 576 -> [0; 1; 1; 0; 1; 0; 0; 0] @ write_white_code (n - 576)
| n when n >= 512 -> [0; 1; 1; 0; 0; 1; 0; 1] @ write_white_code (n - 512)
| n when n >= 448 -> [0; 1; 1; 0; 0; 1; 0; 0] @ write_white_code (n - 448)
| n when n >= 384 -> [0; 0; 1; 1; 0; 1; 1; 1] @ write_white_code (n - 384)
| n when n >= 320 -> [0; 0; 1; 1; 0; 1; 1; 0] @ write_white_code (n - 320)
| n when n >= 256 -> [0; 1; 1; 0; 1; 1; 1] @ write_white_code (n - 256)
| n when n >= 192 -> [0; 1; 0; 1; 1; 1] @ write_white_code (n - 192)
| n when n >= 128 -> [1; 0; 0; 1; 0] @ write_white_code (n - 128)
| n when n >= 64 -> [1; 1; 0; 1; 1] @ write_white_code (n - 64)
| _ -> raise (Pdf.PDFError "write_white_code: unknown")
let rec write_black_code = function
| -1 -> [0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 1]
| 0 -> [0; 0; 0; 0; 1; 1; 0; 1; 1; 1]
| 1 -> [0; 1; 0]
| 2 -> [1; 1]
| 3 -> [1; 0]
| 4 -> [0; 1; 1]
| 5 -> [0; 0; 1; 1]
| 6 -> [0; 0; 1; 0]
| 7 -> [0; 0; 0; 1; 1]
| 8 -> [0; 0; 0; 1; 0; 1]
| 9 -> [0; 0; 0; 1; 0; 0]
| 10 -> [0; 0; 0; 0; 1; 0; 0]
| 11 -> [0; 0; 0; 0; 1; 0; 1]
| 12 -> [0; 0; 0; 0; 1; 1; 1]
| 13 -> [0; 0; 0; 0; 0; 1; 0; 0]
| 14 -> [0; 0; 0; 0; 0; 1; 1; 1]
| 15 -> [0; 0; 0; 0; 1; 1; 0; 0; 0]
| 16 -> [0; 0; 0; 0; 0; 1; 0; 1; 1; 1]
| 17 -> [0; 0; 0; 0; 0; 1; 1; 0; 0; 0]
| 18 -> [0; 0; 0; 0; 0; 0; 1; 0; 0; 0]
| 19 -> [0; 0; 0; 0; 1; 1; 0; 0; 1; 1; 1]
| 20 -> [0; 0; 0; 0; 1; 1; 0; 1; 0; 0; 0]
| 21 -> [0; 0; 0; 0; 1; 1; 0; 1; 1; 0; 0]
| 22 -> [0; 0; 0; 0; 0; 1; 1; 0; 1; 1; 1]
| 23 -> [0; 0; 0; 0; 0; 1; 0; 1; 0; 0; 0]
| 24 -> [0; 0; 0; 0; 0; 0; 1; 0; 1; 1; 1]
| 25 -> [0; 0; 0; 0; 0; 0; 1; 1; 0; 0; 0]
| 26 -> [0; 0; 0; 0; 1; 1; 0; 0; 1; 0; 1; 0]
| 27 -> [0; 0; 0; 0; 1; 1; 0; 0; 1; 0; 1; 1]
| 28 -> [0; 0; 0; 0; 1; 1; 0; 0; 1; 1; 0; 0]
| 29 -> [0; 0; 0; 0; 1; 1; 0; 0; 1; 1; 0; 1]
| 30 -> [0; 0; 0; 0; 0; 1; 1; 0; 1; 0; 0; 0]
| 31 -> [0; 0; 0; 0; 0; 1; 1; 0; 1; 0; 0; 1]
| 32 -> [0; 0; 0; 0; 0; 1; 1; 0; 1; 0; 1; 0]
| 33 -> [0; 0; 0; 0; 0; 1; 1; 0; 1; 0; 1; 1]
| 34 -> [0; 0; 0; 0; 1; 1; 0; 1; 0; 0; 1; 0]
| 35 -> [0; 0; 0; 0; 1; 1; 0; 1; 0; 0; 1; 1]
| 36 -> [0; 0; 0; 0; 1; 1; 0; 1; 0; 1; 0; 0]
| 37 -> [0; 0; 0; 0; 1; 1; 0; 1; 0; 1; 0; 1]
| 38 -> [0; 0; 0; 0; 1; 1; 0; 1; 0; 1; 1; 0]
| 39 -> [0; 0; 0; 0; 1; 1; 0; 1; 0; 1; 1; 1]
| 40 -> [0; 0; 0; 0; 0; 1; 1; 0; 1; 1; 0; 0]
| 41 -> [0; 0; 0; 0; 0; 1; 1; 0; 1; 1; 0; 1]
| 42 -> [0; 0; 0; 0; 1; 1; 0; 1; 1; 0; 1; 0]
| 43 -> [0; 0; 0; 0; 1; 1; 0; 1; 1; 0; 1; 1]
| 44 -> [0; 0; 0; 0; 0; 1; 0; 1; 0; 1; 0; 0]
| 45 -> [0; 0; 0; 0; 0; 1; 0; 1; 0; 1; 0; 1]
| 46 -> [0; 0; 0; 0; 0; 1; 0; 1; 0; 1; 1; 0]
| 47 -> [0; 0; 0; 0; 0; 1; 0; 1; 0; 1; 1; 1]
| 48 -> [0; 0; 0; 0; 0; 1; 1; 0; 0; 1; 0; 0]
| 49 -> [0; 0; 0; 0; 0; 1; 1; 0; 0; 1; 0; 1]
| 50 -> [0; 0; 0; 0; 0; 1; 0; 1; 0; 0; 1; 0]
| 51 -> [0; 0; 0; 0; 0; 1; 0; 1; 0; 0; 1; 1]
| 52 -> [0; 0; 0; 0; 0; 0; 1; 0; 0; 1; 0; 0]
| 53 -> [0; 0; 0; 0; 0; 0; 1; 1; 0; 1; 1; 1]
| 54 -> [0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 0; 0]
| 55 -> [0; 0; 0; 0; 0; 0; 1; 0; 0; 1; 1; 1]
| 56 -> [0; 0; 0; 0; 0; 0; 1; 0; 1; 0; 0; 0]
| 57 -> [0; 0; 0; 0; 0; 1; 0; 1; 1; 0; 0; 0]
| 58 -> [0; 0; 0; 0; 0; 1; 0; 1; 1; 0; 0; 1]
| 59 -> [0; 0; 0; 0; 0; 0; 1; 0; 1; 0; 1; 1]
| 60 -> [0; 0; 0; 0; 0; 0; 1; 0; 1; 1; 0; 0]
| 61 -> [0; 0; 0; 0; 0; 1; 0; 1; 1; 0; 1; 0]
| 62 -> [0; 0; 0; 0; 0; 1; 1; 0; 0; 1; 1; 0]
| 63 -> [0; 0; 0; 0; 0; 1; 1; 0; 0; 1; 1; 1]
| n when n >= 2560 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 1; 1; 1] @ write_black_code (n - 2560)
| n when n >= 2496 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 1; 1; 0] @ write_black_code (n - 2496)
| n when n >= 2432 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 1] @ write_black_code (n - 2432)
| n when n >= 2368 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 0] @ write_black_code (n - 2368)
| n when n >= 2304 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 1; 1; 1] @ write_black_code (n - 2304)
| n when n >= 2240 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 1; 1; 0] @ write_black_code (n - 2240)
| n when n >= 2176 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 1; 0; 1] @ write_black_code (n - 2176)
| n when n >= 2112 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 1; 0; 0] @ write_black_code (n - 2112)
| n when n >= 2048 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 0; 1; 1] @ write_black_code (n - 2048)
| n when n >= 1984 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 0; 1; 0] @ write_black_code (n - 1984)
| n when n >= 1920 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 0; 1] @ write_black_code (n - 1920)
| n when n >= 1856 -> [0; 0; 0; 0; 0; 0; 0; 1; 1; 0; 0] @ write_black_code (n - 1856)
| n when n >= 1792 -> [0; 0; 0; 0; 0; 0; 0; 1; 0; 0; 0] @ write_black_code (n - 1792)
| n when n >= 1728 -> [0; 0; 0; 0; 0; 0; 1; 1; 0; 0; 1; 0; 1] @ write_black_code (n - 1728)
| n when n >= 1664 -> [0; 0; 0; 0; 0; 0; 1; 1; 0; 0; 1; 0; 0] @ write_black_code (n - 1664)
| n when n >= 1600 -> [0; 0; 0; 0; 0; 0; 1; 0; 1; 1; 0; 1; 1] @ write_black_code (n - 1600)
| n when n >= 1536 -> [0; 0; 0; 0; 0; 0; 1; 0; 1; 1; 0; 1; 0] @ write_black_code (n - 1536)
| n when n >= 1472 -> [0; 0; 0; 0; 0; 0; 1; 0; 1; 0; 1; 0; 1] @ write_black_code (n - 1472)
| n when n >= 1408 -> [0; 0; 0; 0; 0; 0; 1; 0; 1; 0; 1; 0; 0] @ write_black_code (n - 1408)
| n when n >= 1344 -> [0; 0; 0; 0; 0; 0; 1; 0; 1; 0; 0; 1; 1] @ write_black_code (n - 1344)
| n when n >= 1280 -> [0; 0; 0; 0; 0; 0; 1; 0; 1; 0; 0; 1; 0] @ write_black_code (n - 1280)
| n when n >= 1216 -> [0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 1; 1; 1] @ write_black_code (n - 1216)
| n when n >= 1152 -> [0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 1; 1; 0] @ write_black_code (n - 1152)
| n when n >= 1088 -> [0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 1; 0; 1] @ write_black_code (n - 1088)
| n when n >= 1024 -> [0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 1; 0; 0] @ write_black_code (n - 1024)
| n when n >= 960 -> [0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 0; 1; 1] @ write_black_code (n - 960)
| n when n >= 896 -> [0; 0; 0; 0; 0; 0; 1; 1; 1; 0; 0; 1; 0] @ write_black_code (n - 896)
| n when n >= 832 -> [0; 0; 0; 0; 0; 0; 1; 0; 0; 1; 1; 0; 1] @ write_black_code (n - 832)
| n when n >= 768 -> [0; 0; 0; 0; 0; 0; 1; 0; 0; 1; 1; 0; 0] @ write_black_code (n - 768)
| n when n >= 704 -> [0; 0; 0; 0; 0; 0; 1; 0; 0; 1; 0; 1; 1] @ write_black_code (n - 704)
| n when n >= 640 -> [0; 0; 0; 0; 0; 0; 1; 0; 0; 1; 0; 1; 0] @ write_black_code (n - 640)
| n when n >= 576 -> [0; 0; 0; 0; 0; 0; 1; 1; 0; 1; 1; 0; 1] @ write_black_code (n - 576)
| n when n >= 512 -> [0; 0; 0; 0; 0; 0; 1; 1; 0; 1; 1; 0; 0] @ write_black_code (n - 512)
| n when n >= 448 -> [0; 0; 0; 0; 0; 0; 1; 1; 0; 1; 0; 1] @ write_black_code (n - 448)
| n when n >= 384 -> [0; 0; 0; 0; 0; 0; 1; 1; 0; 1; 0; 0] @ write_black_code (n - 384)
| n when n >= 320 -> [0; 0; 0; 0; 0; 0; 1; 1; 0; 0; 1; 1] @ write_black_code (n - 320)
| n when n >= 256 -> [0; 0; 0; 0; 0; 1; 0; 1; 1; 0; 1; 1] @ write_black_code (n - 256)
| n when n >= 192 -> [0; 0; 0; 0; 1; 1; 0; 0; 1; 0; 0; 1] @ write_black_code (n - 192)
| n when n >= 128 -> [0; 0; 0; 0; 1; 1; 0; 0; 1; 0; 0; 0] @ write_black_code (n - 128)
| n when n >= 64 -> [0; 0; 0; 0; 0; 0; 1; 1; 1; 1] @ write_black_code (n - 64)
| _ -> raise (Pdf.PDFError "write_black_code: unknown")
let rec read_white_code i =
let a = getbitint i in
let b = getbitint i in
let c = getbitint i in
let d = getbitint i in
match a, b, c, d with
| 0, 1, 1, 1 -> 2
| 1, 0, 0, 0 -> 3
| 1, 0, 1, 1 -> 4
| 1, 1, 0, 0 -> 5
| 1, 1, 1, 0 -> 6
| 1, 1, 1, 1 -> 7
| _ ->
let e = getbitint i in
match a, b, c, d, e with
| 1, 0, 0, 1, 1 -> 8
| 1, 0, 1, 0, 0 -> 9
| 0, 0, 1, 1, 1 -> 10
| 0, 1, 0, 0, 0 -> 11
| 1, 1, 0, 1, 1 -> 64 + read_white_code i
| 1, 0, 0, 1, 0 -> 128 + read_white_code i
| _ ->
let f = getbitint i in
match a, b, c, d, e, f with
| 0, 0, 0, 1, 1, 1 -> 1
| 0, 0, 1, 0, 0, 0 -> 12
| 0, 0, 0, 0, 1, 1 -> 13
| 1, 1, 0, 1, 0, 0 -> 14
| 1, 1, 0, 1, 0, 1 -> 15
| 1, 0, 1, 0, 1, 0 -> 16
| 1, 0, 1, 0, 1, 1 -> 17
| 0, 1, 0, 1, 1, 1 -> 192 + read_white_code i
| 0, 1, 1, 0, 0, 0 -> 1664 + read_white_code i
| _ ->
let g = getbitint i in
match a, b, c, d, e, f, g with
| 0, 1, 0, 0, 1, 1, 1 -> 18
| 0, 0, 0, 1, 1, 0, 0 -> 19
| 0, 0, 0, 1, 0, 0, 0 -> 20
| 0, 0, 1, 0, 1, 1, 1 -> 21
| 0, 0, 0, 0, 0, 1, 1 -> 22
| 0, 0, 0, 0, 1, 0, 0 -> 23
| 0, 1, 0, 1, 0, 0, 0 -> 24
| 0, 1, 0, 1, 0, 1, 1 -> 25
| 0, 0, 1, 0, 0, 1, 1 -> 26
| 0, 1, 0, 0, 1, 0, 0 -> 27
| 0, 0, 1, 1, 0, 0, 0 -> 28
| 0, 1, 1, 0, 1, 1, 1 -> 256 + read_white_code i
| _ ->
let h = getbitint i in
match a, b, c, d, e, f, g, h with
| 0, 0, 1, 1, 0, 1, 0, 1 -> 0
| 0, 0, 0, 0, 0, 0, 1, 0 -> 29
| 0, 0, 0, 0, 0, 0, 1, 1 -> 30
| 0, 0, 0, 1, 1, 0, 1, 0 -> 31
| 0, 0, 0, 1, 1, 0, 1, 1 -> 32
| 0, 0, 0, 1, 0, 0, 1, 0 -> 33
| 0, 0, 0, 1, 0, 0, 1, 1 -> 34
| 0, 0, 0, 1, 0, 1, 0, 0 -> 35
| 0, 0, 0, 1, 0, 1, 0, 1 -> 36
| 0, 0, 0, 1, 0, 1, 1, 0 -> 37
| 0, 0, 0, 1, 0, 1, 1, 1 -> 38
| 0, 0, 1, 0, 1, 0, 0, 0 -> 39
| 0, 0, 1, 0, 1, 0, 0, 1 -> 40
| 0, 0, 1, 0, 1, 0, 1, 0 -> 41
| 0, 0, 1, 0, 1, 0, 1, 1 -> 42
| 0, 0, 1, 0, 1, 1, 0, 0 -> 43
| 0, 0, 1, 0, 1, 1, 0, 1 -> 44
| 0, 0, 0, 0, 0, 1, 0, 0 -> 45
| 0, 0, 0, 0, 0, 1, 0, 1 -> 46
| 0, 0, 0, 0, 1, 0, 1, 0 -> 47
| 0, 0, 0, 0, 1, 0, 1, 1 -> 48
| 0, 1, 0, 1, 0, 0, 1, 0 -> 49
| 0, 1, 0, 1, 0, 0, 1, 1 -> 50
| 0, 1, 0, 1, 0, 1, 0, 0 -> 51
| 0, 1, 0, 1, 0, 1, 0, 1 -> 52
| 0, 0, 1, 0, 0, 1, 0, 0 -> 53
| 0, 0, 1, 0, 0, 1, 0, 1 -> 54
| 0, 1, 0, 1, 1, 0, 0, 0 -> 55
| 0, 1, 0, 1, 1, 0, 0, 1 -> 56
| 0, 1, 0, 1, 1, 0, 1, 0 -> 57
| 0, 1, 0, 1, 1, 0, 1, 1 -> 58
| 0, 1, 0, 0, 1, 0, 1, 0 -> 59
| 0, 1, 0, 0, 1, 0, 1, 1 -> 60
| 0, 0, 1, 1, 0, 0, 1, 0 -> 61
| 0, 0, 1, 1, 0, 0, 1, 1 -> 62
| 0, 0, 1, 1, 0, 1, 0, 0 -> 63
| 0, 0, 1, 1, 0, 1, 1, 0 -> 320 + read_white_code i
| 0, 0, 1, 1, 0, 1, 1, 1 -> 384 + read_white_code i
| 0, 1, 1, 0, 0, 1, 0, 0 -> 448 + read_white_code i
| 0, 1, 1, 0, 0, 1, 0, 1 -> 512 + read_white_code i
| 0, 1, 1, 0, 1, 0, 0, 0 -> 576 + read_white_code i
| 0, 1, 1, 0, 0, 1, 1, 1 -> 640 + read_white_code i
| _ ->
let j = getbitint i in
match a, b, c, d, e, f, g, h, j with
| 0, 1, 1, 0, 0, 1, 1, 0, 0 -> 704 + read_white_code i
| 0, 1, 1, 0, 0, 1, 1, 0, 1 -> 768 + read_white_code i
| 0, 1, 1, 0, 1, 0, 0, 1, 0 -> 832 + read_white_code i
| 0, 1, 1, 0, 1, 0, 0, 1, 1 -> 896 + read_white_code i
| 0, 1, 1, 0, 1, 0, 1, 0, 0 -> 960 + read_white_code i
| 0, 1, 1, 0, 1, 0, 1, 0, 1 -> 1024 + read_white_code i
| 0, 1, 1, 0, 1, 0, 1, 1, 0 -> 1088 + read_white_code i
| 0, 1, 1, 0, 1, 0, 1, 1, 1 -> 1152 + read_white_code i
| 0, 1, 1, 0, 1, 1, 0, 0, 0 -> 1216 + read_white_code i
| 0, 1, 1, 0, 1, 1, 0, 0, 1 -> 1280 + read_white_code i
| 0, 1, 1, 0, 1, 1, 0, 1, 0 -> 1344 + read_white_code i
| 0, 1, 1, 0, 1, 1, 0, 1, 1 -> 1408 + read_white_code i
| 0, 1, 0, 0, 1, 1, 0, 0, 0 -> 1472 + read_white_code i
| 0, 1, 0, 0, 1, 1, 0, 0, 1 -> 1536 + read_white_code i
| 0, 1, 0, 0, 1, 1, 0, 1, 0 -> 1600 + read_white_code i
| 0, 1, 0, 0, 1, 1, 0, 1, 1 -> 1728 + read_white_code i
| _ ->
let k = getbitint i in
let l = getbitint i in
match a, b, c, d, e, f, g, h, j, k, l with
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0 -> 1792 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0 -> 1856 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1 -> 1920 + read_white_code i
| _ ->
let m = getbitint i in
match a, b, c, d, e, f, g, h, j, k, l, m with
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 -> -1
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0 -> 1984 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1 -> 2048 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0 -> 2112 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1 -> 2176 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0 -> 2240 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1 -> 2304 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0 -> 2368 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1 -> 2432 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0 -> 2496 + read_white_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1 -> 2560 + read_white_code i
| _ -> raise (Failure "bad white code")
let rec read_black_code i =
let a = getbitint i in
let b = getbitint i in
match a, b with
| 1, 1 -> 2
| 1, 0 -> 3
| _ ->
let c = getbitint i in
match a, b, c with
| 0, 1, 0 -> 1
| 0, 1, 1 -> 4
| _ ->
let d = getbitint i in
match a, b, c, d with
| 0, 0, 1, 1 -> 5
| 0, 0, 1, 0 -> 6
| _ ->
let e = getbitint i in
match a, b, c, d, e with
| 0, 0, 0, 1, 1 -> 7
| _ ->
let f = getbitint i in
match a, b, c, d, e, f with
| 0, 0, 0, 1, 0, 1 -> 8
| 0, 0, 0, 1, 0, 0 -> 9
| _ ->
let g = getbitint i in
match a, b, c, d, e, f, g with
| 0, 0, 0, 0, 1, 0, 0 -> 10
| 0, 0, 0, 0, 1, 0, 1 -> 11
| 0, 0, 0, 0, 1, 1, 1 -> 12
| _ ->
let h = getbitint i in
match a, b, c, d, e, f, g, h with
| 0, 0, 0, 0, 0, 1, 0, 0 -> 13
| 0, 0, 0, 0, 0, 1, 1, 1 -> 14
| _ ->
let j = getbitint i in
match a, b, c, d, e, f, g, h, j with
| 0, 0, 0, 0, 1, 1, 0, 0, 0 -> 15
| _ ->
let k = getbitint i in
match a, b, c, d, e, f, g, h, j, k with
| 0, 0, 0, 0, 1, 1, 0, 1, 1, 1 -> 0
| 0, 0, 0, 0, 0, 1, 0, 1, 1, 1 -> 16
| 0, 0, 0, 0, 0, 1, 1, 0, 0, 0 -> 17
| 0, 0, 0, 0, 0, 0, 1, 0, 0, 0 -> 18
| 0, 0, 0, 0, 0, 0, 1, 1, 1, 1 -> 64 + read_black_code i
| _ ->
let l = getbitint i in
match a, b, c, d, e, f, g, h, j, k, l with
| 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1 -> 19
| 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0 -> 20
| 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0 -> 21
| 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1 -> 22
| 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0 -> 23
| 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1 -> 24
| 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0 -> 25
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0 -> 1792 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0 -> 1856 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1 -> 1920 + read_black_code i
| _ ->
let m = getbitint i in
match a, b, c, d, e, f, g, h, j, k, l, m with
| 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0 -> 26
| 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1, 1 -> 27
| 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 0 -> 28
| 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1 -> 29
| 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 0 -> 30
| 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1 -> 31
| 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0 -> 32
| 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1 -> 33
| 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 0 -> 34
| 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 1, 1 -> 35
| 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 0 -> 36
| 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, 1 -> 37
| 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 0 -> 38
| 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 1, 1 -> 39
| 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0 -> 40
| 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1 -> 41
| 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 0 -> 42
| 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1, 1 -> 43
| 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0 -> 44
| 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1 -> 45
| 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 0 -> 46
| 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1, 1 -> 47
| 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0 -> 48
| 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1 -> 49
| 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0 -> 50
| 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1 -> 51
| 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0 -> 52
| 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 1 -> 53
| 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0 -> 54
| 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 1 -> 55
| 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0 -> 56
| 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 0 -> 57
| 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0, 1 -> 58
| 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 1 -> 59
| 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 0 -> 60
| 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0 -> 61
| 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 0 -> 62
| 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1, 1 -> 63
| 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0 -> 128 + read_black_code i
| 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1 -> 192 + read_black_code i
| 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1 -> 256 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 1 -> 320 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0 -> 384 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1 -> 448 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0 -> 1984 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1 -> 2048 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0 -> 2112 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1 -> 2176 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0 -> 2240 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 1 -> 2304 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0 -> 2368 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1 -> 2432 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 0 -> 2496 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1 -> 2560 + read_black_code i
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 -> -1
| _ ->
let n = getbitint i in
match a, b, c, d, e, f, g, h, j, k, l, m, n with
| 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0 -> 512 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 1 -> 576 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 0 -> 640 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1, 1 -> 704 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 0 -> 768 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 1, 0, 1 -> 832 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 0 -> 896 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1, 1 -> 960 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 0 -> 1024 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 0, 1 -> 1088 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 0 -> 1152 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 1, 1, 1 -> 1216 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0 -> 1280 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1 -> 1344 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 0 -> 1408 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 1, 0, 1 -> 1472 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 0 -> 1536 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 0, 1, 1, 0, 1, 1 -> 1600 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0 -> 1664 + read_black_code i
| 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 1 -> 1728 + read_black_code i
| _ -> raise (Failure "bad black code")
(* Group 4 Fax decoder. *)
type modes =
| Pass
| Horizontal
| Vertical of int
| Uncompressed
| EOFB
let read_mode i =
(*Printf.printf "read_mode\n";
Printf.printf "input length %i, position %i\n" i.input.in_channel_length (i.input.pos_in ());*)
let a = getbitint i in
match a with
| 1 -> Vertical 0
| _ ->
let b = getbitint i in
let c = getbitint i in
(*Printf.printf "a, b, c = %i, %i, %i\n" a b c;*)
match a, b, c with
| 0, 1, 1 -> Vertical (-1)
| 0, 1, 0 -> Vertical 1
| 0, 0, 1 -> Horizontal
| _ ->
let d = getbitint i in
match a, b, c, d with
| 0, 0, 0, 1 -> Pass
| _ ->
let e = getbitint i in
let f = getbitint i in
match a, b, c, d, e, f with
| 0, 0, 0, 0, 1, 1 -> Vertical (-2)
| 0, 0, 0, 0, 1, 0 -> Vertical 2
| _ ->
let g = getbitint i in
match a, b, c, d, e, f, g with
| 0, 0, 0, 0, 0, 1, 1 -> Vertical (-3)
| 0, 0, 0, 0, 0, 1, 0 -> Vertical 3
| _ ->
let h = getbitint i in
let j = getbitint i in
let k = getbitint i in
let l = getbitint i in
let m = getbitint i in
match a, b, c, d, e, f, g, h, j, k, l, m with
| 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1 -> Uncompressed
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 ->
let a = getbitint i in
let b = getbitint i in
let c = getbitint i in
let d = getbitint i in
let e = getbitint i in
let f = getbitint i in
let g = getbitint i in
let h = getbitint i in
let j = getbitint i in
let k = getbitint i in
let l = getbitint i in
let m = getbitint i in
begin match a, b, c, d, e, f, g, h, j, k, l, m with
| 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 -> EOFB
| _ -> raise (Failure "Not a valid code on EOFB")
end
| _ -> raise (Failure "Not a valid code")
let decode_CCITTFax k eol eba c r eob bone dra input =
(*Printf.printf "**** decode_CCITTFax, k = %i\n" k;*)
if k > 0 then raise (DecodeNotSupported "CCITTFax k > 0") else
let whiteval, blackval = if bone then 0, 1 else 1, 0
in let output = make_write_bitstream () in
let b = bitbytes_of_input input
in let column = ref 0
in let row = ref 0
in let refline = ref (Array.make c whiteval)
in let currline = ref (Array.make c 0)
in let white = ref true
in let output_line line =
Array.iter (putbit output) line;
align_write output
in
let output_span l v =
if l < 0 then raise (Failure "Bad CCITT stream") else
begin
for x = !column to !column + l - 1 do
let r = !currline in r.(x) <- v
done;
column += l
end
in let find_b1 () =
let pos = ref !column
in let curr, opp =
if !white then whiteval, blackval else blackval, whiteval
in
let find v =
while
let r = !refline in
if !pos >= 0 && !pos < Array.length r then
r.(!pos) <> v
else
false
do
incr pos
done; !pos
in
try
(* Careful to skip imaginary black at beginning *)
ignore (if !column = 0 && !white then 0 else find curr);
find opp
with
_ -> c
in let find_b2 () =
let pos = ref !column
in let curr, opp =
if !white then whiteval, blackval else blackval, whiteval
in
let find v =
while
let r = !refline in
if !pos >=0 && !pos < Array.length r then
r.(!pos) <> v
else
false
do
incr pos
done; !pos
in
try
(* Careful to skip imaginary black at beginning *)
ignore (if !column = 0 && !white then 0 else find curr);
ignore (find opp);
find curr
with
_ -> c
in
try
while true do
(*flprint "--------------------------------------\n";
Printf.printf "column = %i, c = %i, k = %i\n" !column c k;*)
if !column >= c then
begin
(*flprint "!column > c\n";*)
output_line !currline;
refline := !currline;
column := 0;
set white;
if eba then align b;
incr row;
if !row >= r && r > 0 then raise End_of_file
end
else
begin
if k < 0 then
(* Group 4 *)
begin match read_mode b with
| Pass ->
(*Printf.printf "Read: pass\n";*)
output_span
(find_b2 () - !column)
(if !white then whiteval else blackval)
| Horizontal ->
(*Printf.printf "Read: Horizontal.\n";*)
if !white then
begin
output_span (let x = read_white_code b in (*Printf.printf "It's white, read white code %i\n" x;*) x) whiteval;
output_span (let x = read_black_code b in (*Printf.printf "It's white, read black code %i\n" x;*) x) blackval;
end
else
begin
output_span (let x = read_black_code b in (*Printf.printf "It's black, read black code %i\n" x;*) x) blackval;
output_span (let x = read_white_code b in (*Printf.printf "It's black, read white code %i\n" x;*) x) whiteval;
end
| Vertical n ->
(*Printf.printf "Read: Vertical.\n";
Printf.printf "white is %b\n" !white;*)
output_span
(let x = find_b1 () - !column - n in (*Printf.printf "white = %b, writing span %i\n" !white x;*) x)
(if !white then whiteval else blackval);
flip white
| EOFB ->
(*flprint "***EOFB\n";*)
raise End_of_file
| Uncompressed ->
(*flprint "***Uncompressed\n";*)
raise (DecodeNotSupported "CCITT Uncompressed")
end
else if k = 0 then
(* Group 3 *)
begin match
(if !white then read_white_code else read_black_code) b
with
| -1 ->
(* Pad it out *)
if !column > 0 then output_span (c - !column) whiteval
| l ->
begin
output_span l (if !white then whiteval else blackval);
flip white
end
end
else
raise (DecodeNotSupported "CCITT k")
end
done;
mkbytes 0
with
| End_of_file ->
(*flprint "***End_of_file\n";*)
bytes_of_write_bitstream output
| _ -> raise (Failure "Bad CCITT Stream")
(* CCITT Group 3 encoder *)
(* Data comes in as bytes, with each scanline padded with zeroes. In addition,
it is padded to bytes at the end.
Output is suitable for /CCITTFaxDecode /Columns <columns> /K 0 with all other
dictionary entries as default. *)
(* Return colour of run, and non-zero length of run (must make progress) *)
let read_run maxcols i =
let nbits = ref 1 in
let iswhite = ref (getbit i) in
let fin = ref false in
while !nbits < maxcols && not !fin do
let pos = ref (bitstream_pos i) in
let newbit = getbit i in
if newbit = !iswhite then nbits += 1 else (bitstream_seek i !pos; set fin)
done;
(!iswhite, !nbits)
let encode_ccitt columns rows stream =
let i = bitbytes_of_input (input_of_bytes stream) in
let o = make_write_bitstream () in
try
let rows_left = ref rows in
let cols_left = ref columns in
while true do
if !rows_left = 0 then raise Exit else
let iswhite, length = read_run !cols_left i in
let bits = (if iswhite then write_white_code else write_black_code) length in
if not iswhite && !cols_left = columns then iter (putbit o) (write_white_code 0);
iter (putbit o) bits;
cols_left -= length;
if !cols_left = 0 then (align i; cols_left := columns; rows_left -= 1);
done;
mkbytes 0
with
| Exit ->
iter (putbit o) (write_white_code ~-1);
iter (putbit o) (write_white_code ~-1);
align_write o;
bytes_of_write_bitstream o
| End_of_file ->
raise (Failure "encode_ccitt: not enough data")
(* CCITT Group 4 encoder *)
(* Data comes in as bytes, with each scanline padded with zeroes. In addition,
it is padded to bytes at the end. (Why though? Check for our case.)
Output is suitable for /CCITTFaxDecode /Columns <columns> /K -1 with all other
dictionary entries as default. *)
let pdf_of_file = ref (fun ?revision:int _ _ _ -> Pdf.empty ())
let encode_ccittg4 ?im columns rows stream =
match im with None -> raise (DecodeNotSupported "no imagemagick provided.") | Some im ->
let f_i, f_out =
Filename.temp_file "cpdf" "g4input.gray", Filename.temp_file "cpdf" "g4out.pdf"
in
contents_to_file ~filename:f_i (Pdfio.string_of_bytes stream);
let outcode =
let command = Filename.quote_command im ["-depth"; "1"; "-size"; string_of_int columns ^ "x" ^ string_of_int rows; f_i; "-compress"; "GROUP4"; f_out] in
Sys.command command
in
if outcode > 0 then raise (DecodeNotSupported "magick return code non-zero") else
let pdf = !pdf_of_file None None f_out in
let data =
match Pdf.lookup_chain pdf pdf.Pdf.trailerdict ["/Root"; "/Pages"; "/Kids"; "/[0]"; "/Resources"; "/XObject"; "/Im0"] with
| Some (Pdf.Stream {contents = (_, Pdf.Got data)}) -> data
| _ -> raise (DecodeNotSupported "malformed PDF from imagemagick")
in
Sys.remove f_i;
Sys.remove f_out;
data
(* This implementation is unfinished, and does not work. We're calling out to magick for now. *)
(*
let i = bitbytes_of_input (input_of_bytes stream) in
let o = make_write_bitstream () in
let white, black = true, false in
let colstr = function true -> "white" | false -> "black" in
let rl = Array.make columns white in
let cl = Array.make columns white in
let rows_left = ref rows in
try
while true do
if !rows_left = 0 then raise Exit else
Printf.printf "------------------------ rows left = %i\n" !rows_left;
(* Move current line to reference line *)
Array.blit cl 0 rl 0 columns;
(* Read new current line from input *)
for x = 0 to columns - 1 do cl.(x) <- getbit i done;
let a0 = ref ~-1 in
let a1 = ref 0 in
let a2 = ref 0 in
let b1 = ref 0 in
let b2 = ref 0 in
let read l p =
(*Printf.printf "read %i\n%!" p;*)
if p = ~-1 then white else
if p >= Array.length l then not l.(Array.length l - 1) else
try l.(p) with _ -> raise (Failure "out of range / encode_ccittg4")
in
Printf.printf "Beginning of while loop, a0 = %i\n%!" !a0;
while !a0 < columns do
(* Find a1, the first position (in coding line) which has a different colour from a0. (in coding line) *)
let a0_colour_cl = read cl !a0 in
(*Printf.printf "a0_colour_cl = %s\n%!" (colstr a0_colour_cl);*)
a1 := !a0 + 1;
while let r = read cl !a1 in (*Printf.printf "read colour %s\n%!" (colstr r);*) r = a0_colour_cl do a1 += 1 done;
Printf.printf "a1 = %i\n%!" !a1;
(* Find b1, the first position (in reference line) after a0 which has a different colour from a0 (in coding line) *)
b1 := min (Array.length cl) (!a0 + 1);
while !b1 < Array.length rl && read rl !b1 = a0_colour_cl do b1 += 1 done;
Printf.printf "b1 = %i\n%!" !b1;
let b1_colour_rl = read rl !b1 in
(* Find b2, the first position (in reference line) after b1 (which has a different colour from b1 (in reference line) *)
b2 := min (Array.length cl) (!b1 + 1);
while !b2 < Array.length rl && read rl !b2 = b1_colour_rl do b2 += 1 done;
Printf.printf "b2 = %i\n%!" !b2;
if !b2 < !a1 then
begin
Printf.printf "Pass mode coding\n%!";
iter (putbit o) [0; 0; 0; 1];
a0 := !b2
end
else if abs (!b1 - !a1) <= 3 then
begin
Printf.printf "Vertical mode coding, !b1 - !a1 = %i\n%!" (!b1 - !a1);
begin match !b1 - !a1 with
| 0 -> iter (putbit o) [1]
| -1 -> iter (putbit o) [0; 1; 1]
| -2 -> iter (putbit o) [0; 0; 0; 0; 1; 1]
| -3 -> iter (putbit o) [0; 0; 0; 0; 0; 1; 1]
| 1 -> iter (putbit o) [0; 1; 0]
| 2 -> iter (putbit o) [0; 0; 0; 0; 1; 0]
| 3 -> iter (putbit o) [0; 0; 0; 0; 0; 1; 0]
| _ -> raise (Pdf.PDFError "Bad vertical mode in CCITT G4 encoding")
end;
a0 := !a1
end
else
begin
Printf.printf "Horizontal mode coding\n%!";
(* Find a2, the first position (in coding line) which has a different colour from the new a1. (in coding line) *)
let a1_color_cl = read cl !a1 in
a2 := !a1 + 1;
while read cl !a2 = a1_color_cl do a2 += 1 done;
(*Printf.printf "a2 = %i\n" !a2;*)
iter (putbit o) [0; 0; 1];
(*if cl.(0) = black then iter (putbit o) [0; 0; 1; 1; 0; 1; 0; 1];*)
Printf.printf "a0 %i, a1 %i, a2 %i\n" !a0 !a1 !a2;
begin try iter (putbit o) (if !a0 = -1 then write_white_code 0 else if cl.(!a0) = black then write_black_code (!a1 - !a0) else write_white_code (!a1 - !a0)) with _ -> flprint "Error\n" end;
begin try iter (putbit o) (if cl.(!a1) = black then write_black_code (!a2 - !a1) else write_white_code (!a2 - !a1)) with _ -> flprint "Error2\n" end;
(* begin try Printf.printf "%s %i, %!" (if cl.(!a0) = black then "black" else "white") (!a1 - !a0) with _ -> () end;
begin try Printf.printf "%s %i\n%!" (if cl.(!a1) = black then "black" else "white") (!a2 - !a1) with _ -> () end;*)
a0 := !a2
end
done;
align i;
rows_left -= 1
done;
mkbytes 0
with
| Exit ->
iter (putbit o) [0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 1; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 1];
align_write o;
bytes_of_write_bitstream o
| End_of_file ->
raise (Failure "encode_ccittg4: not enough data")
(*(* Show all the bits in an input *)
let debug_bits i =
let b = bitbytes_of_input i in
let pos = bitstream_pos b in
try
while true do Printf.printf "%s " (if getbit b then "1" else "0") done
with _ ->
bitstream_seek b pos;
flprint "\n"
let roundtrip_test_g4 cols rows (input : input) =
(*flprint "IN: "; debug_bits input;*)
let encoded = input_of_bytes (encode_ccittg4 cols rows (bytes_of_string (string_of_input input))) in
(*flprint "OUT: "; debug_bits encoded;*)
decode_CCITTFax ~-1 false false cols 0 true false 0 encoded
let roundtrip_test_g3 cols rows (input : input) =
decode_CCITTFax 0 false false cols 0 true false 0 (input_of_bytes (encode_ccitt cols rows (bytes_of_string (string_of_input input))))
(* Make a random image of given width and height *)
let random_image w h =
let o = make_write_bitstream () in
for y = 1 to h do
for x = 1 to w do
(*if x = 1 then putbit o 1 else
putbit o (Random.int 2);*)
putbit o 0
done;
align_write o
done;
bytes_of_write_bitstream o
let white = 1 and black = 0
let print_image w h i =
i.seek_in 0;
let bits = bitbytes_of_input i in
for _ = 1 to h do
for _ = 1 to w do
Printf.printf "%s " (if getbit bits then "W" else "B")
done;
align bits;
flprint "\n"
done*)
(*let _ =
let a = 2000 in
(*for a = 1 to max_int do*)
for w = 1 to 3 do
for h = 1 to 1 do
for x = 1 to 1 do
Printf.printf "%i x %i... Test %i...\n%!" w h x;
let input = random_image w h in
print_image w h (input_of_bytes input);
let outputg4 = (*try*) roundtrip_test_g4 w h (input_of_bytes input) (*with _ -> mkbytes 0*) in
if input <> outputg4 then
begin
Printf.printf "Input: %S --> G4 failed with %S\n" (string_of_bytes input) (string_of_bytes outputg4);
if input <> outputg4 then exit 2
end;
(*let outputg3 = roundtrip_test_g3 w h input in
if input <> outputg3 then
begin Printf.printf "Input: %S --> G3 failed with %S\n" (string_of_bytes input) (string_of_bytes outputg3); if input <> outputg3 then exit 2 end*)
done
done
done
(*done*)*)
*)
(* PNG and TIFF Predictors *)
(* Get the value at index i from an int array a, giving zero if the index is
too low. Fails in the usual manner if the index is too high. *)
let get0 a i =
if i < 0 then 0 else a.(i)
(* TIFF prediction. 8bpp only for now. *)
let decode_tiff_predictor colors bpc columns stream =
match bpc with
| 1 -> raise (DecodeNotSupported "TIFF Predictor for 1bpc not supported")
| 2 -> raise (DecodeNotSupported "TIFF Predictor for 2bpc not supported")
| 4 -> raise (DecodeNotSupported "TIFF Predictor for 4bpc not supported")
| 8 ->
let scanline_width = (colors * bpc * columns + 7) / 8 in
for line = 0 to bytes_size stream / scanline_width - 1 do
let linestart = line * scanline_width in
let p = ref colors in
while !p < scanline_width do
bset stream (linestart + !p)
((bget stream (linestart + !p - colors) +
bget stream (linestart + !p)) mod 256);
p := !p + 1
done
done;
stream
| 16 -> raise (DecodeNotSupported "TIFF Predictor for 16bpc not supported")
| _ -> raise (DecodeNotSupported "Tiff predictor for unknown color depth")
(* Given two scanlines, the previous and current, and the predictor function
p, calculate the output scanline as a list of bytes. *)
let decode_scanline_pair prior_encoded prior_decoded current pred bpc cols =
let output = Array.copy current in
begin match pred with
| 0 -> (* None *)
()
| 1 -> (* Sub *)
for x = 0 to Array.length output - 1 do
output.(x) <- (get0 current x + get0 output (x - cols)) mod 256
done
| 2 -> (* Up *)
for x = 0 to Array.length output - 1 do
output.(x) <- (get0 current x + get0 prior_decoded x) mod 256
done
| 3 -> (* Average -- No test case yet found. *)
for x = 0 to Array.length output - 1 do
output.(x) <-
(get0 current x +
(get0 output (x - cols) + get0 prior_decoded x) / 2) mod 256
done
| 4 -> (* Paeth *)
let paeth a b c =
let p = a + b - c in
let pa = abs (p - a) in
let pb = abs (p - b) in
let pc = abs (p - c) in
if pa <= pb && pa <= pc then a
else if pb <= pc then b
else c
in
for x = 0 to Array.length output - 1 do
output.(x) <-
let curr = get0 current x
in let currback = get0 output (x - cols)
in let decoded = get0 prior_decoded x
in let decodedback = get0 prior_decoded (x - cols) in
(curr + paeth currback decoded decodedback) mod 256
done
| _ -> raise (DecodeNotSupported "unknown PNG predictor")
end;
output
(* Main function. Given predictor, number of channels, bits-per-channel,
columns and the stream data, perform the decoding. *)
let decode_predictor pred colors bpc columns stream =
if pred = 2 then decode_tiff_predictor colors bpc columns stream else
let i = input_of_bytes stream
in let scanline_width = (colors * bpc * columns + 7) / 8 in
let blank () = ref (Array.make scanline_width 0) in
let prev, curr, prior_decoded = blank (), blank (), blank ()
in let outputlines = ref []
in let finished = ref false
in let pred = ref 0
in let got_predictor = ref false in
while not !finished do
clear got_predictor;
begin match i.input_byte () with
| x when x = no_more -> set finished
| x -> pred := x
end;
if !finished then () else
begin
set got_predictor;
prev := !curr;
for x = 0 to scanline_width - 1 do
match i.input_byte () with
| x when x = no_more -> set finished
| b -> (!curr).(x) <- b
done
end;
(* We allow an unfinished final line only if we managed to get a
predictor byte *)
if !got_predictor then
begin
prior_decoded :=
decode_scanline_pair
!prev !prior_decoded !curr !pred bpc ((bpc * colors + 7) / 8);
outputlines =| !prior_decoded
end
done;
bytes_of_arraylist (rev !outputlines)
(* A couple of special-purpose encoders for prediction. *)
let encode_predictor pred colors bpc columns stream =
let get0 a i =
if i < 0 then 0 else bget a i
in
match pred with
| 11 ->
(* Just for recompressing inline images. Restricted to bpc = 8, colors = 3 for now. *)
let o, bytes = input_output_of_bytes 4096 in
for scanline = 0 to bytes_size stream / (columns * 3) - 1 do
o.output_byte 1; (* tag for Sub *)
for byte = 0 to columns * 3 - 1 do
o.output_byte
((get0 stream (scanline * columns + byte)) -
(if byte < 3 then 0 else get0 stream (scanline * columns + byte - 3))
mod 256)
done
done;
extract_bytes_from_input_output o bytes
| 12 ->
(* Just for XRef streams. *)
let o, bytes = input_output_of_bytes 4096 in
for scanline = 0 to bytes_size stream / columns - 1 do
o.output_byte 2; (* tag for Up *)
for byte = 0 to columns - 1 do
o.output_byte
((get0 stream (scanline * columns + byte) -
get0 stream ((scanline - 1) * columns + byte))
mod 256)
done
done;
extract_bytes_from_input_output o bytes
| n ->
raise (Pdf.PDFError ("encode_predictor: not supported - " ^ string_of_int n))
(* Run Length Encoding *)
let encode_runlength stream =
let i = input_of_bytes stream in
let data_in = ref [] in
begin try
while true do
data_in =|
begin match i.input_byte () with
| x when x = no_more -> raise End_of_file
| x -> x
end
done
with
End_of_file -> data_in := rev !data_in
end;
let rec runs_of_data prev = function
| [] -> rev prev
| h::t ->
let same, rest = cleavewhile (eq h) (h::t) in
runs_of_data ((length same, hd same)::prev) rest
in
let runs = ref (runs_of_data [] !data_in)
in let outbytes = ref []
in let chunksize = ref 0
in let chunkdata = ref [] in
let writechunk () =
if !chunksize > 0 then
begin
outbytes =| !chunksize - 1;
iter (( =| ) outbytes) (rev !chunkdata);
chunkdata := [];
chunksize := 0;
end
in
while !runs <> [] do
begin match hd !runs with
| (l, _) when l < 1 ->
assert false
| (l, x) when l < 3 ->
if l + !chunksize > 128 then writechunk ();
chunkdata =@ many x l;
chunksize += l
| (l, x) ->
writechunk ();
let l = ref l in
while !l > 0 do
outbytes =| 257 - min !l 128;
outbytes =| x;
l -= 128
done
end;
runs := tl !runs
done;
writechunk ();
outbytes =| 128; (*r End-of-data *)
bytes_of_list (rev !outbytes)
let decode_runlength i =
let o, data = input_output_of_bytes 4096 in
let eod = ref false in
begin try
while not !eod do
let l =
match i.input_byte () with
| x when x = no_more -> raise End_of_file
| x -> x
in
if l < 128 then
for x = 1 to l + 1 do
o.output_byte
begin match i.input_byte () with
| x when x = no_more -> raise End_of_file
| x -> x
end
done
else if l > 128 then
let towrite =
begin match i.input_byte () with
| x when x = no_more -> raise End_of_file
| x -> x
end;
in
for x = 1 to 257 - l do o.output_byte towrite done
else
set eod
done
with
End_of_file ->
Pdfe.log "Warning: Missing EOD marker in runlength decode...\n"
end;
extract_bytes_from_input_output o data
(* JBIG2Decode with the help of jbig2dec. *)
let decode_jbig2dec_pbm s =
let pos, num = ref 0, ref 3 in
while !num > 0 do
if Pdf.is_whitespace s.[!pos] then num -= 1;
pos += 1
done;
let s = String.sub s !pos (String.length s - !pos) in
bytes_of_string (String.map (fun c -> char_of_int (int_of_char c lxor 0xFF)) s)
let decode_jbig2 jbig2globals jbig2dec i =
let f_i, f_globals, f_out =
Filename.temp_file "cpdf" "jb2input",
(match jbig2globals with Some _ -> Filename.temp_file "cpdf" "jb2globals" | _ -> ""),
Filename.temp_file "cpdf" "jb2out"
in
contents_to_file ~filename:f_i (Pdfio.string_of_input i);
begin match jbig2globals with
| Some b -> contents_to_file ~filename:f_globals (Pdfio.string_of_bytes b)
| None -> ()
end;
let outcode =
let command = (Filename.quote_command jbig2dec (["-e"] @ (if f_globals = "" then [] else [f_globals]) @ [f_i] @ ["-o"; f_out])) in
Sys.command command
in
let data =
if outcode = 0 then contents_of_file f_out else raise (DecodeNotSupported "jbig2dec return code non-zero")
in
Sys.remove f_i;
if f_globals <> "" then Sys.remove f_globals;
Sys.remove f_out;
try decode_jbig2dec_pbm data with _ -> raise (DecodeNotSupported "jbig2dec produced output which could not be read")
(* Decoding PDF streams *)
type source =
| StreamSource of bytes
| InputSource of input
let decode_identity i =
bytes_of_input i 0 i.in_channel_length
let decoder ?jbig2dec pdf dict source name =
let input_of_source = function
| InputSource i -> i
| StreamSource s -> input_of_bytes s
in
let i = input_of_source source in
match name with
| "/Crypt" -> decode_identity i
| "/ASCIIHexDecode" | "/AHx" -> decode_ASCIIHex i
| "/ASCII85Decode" | "/A85" -> decode_ASCII85 i
| "/FlateDecode" | "/Fl" ->
begin match source with
| StreamSource s -> decode_flate s
| InputSource i -> decode_flate_input i
end
| "/RunLengthDecode" | "/RL" -> decode_runlength i
| "/LZWDecode" | "/LZW" ->
let early =
match Pdf.lookup_direct_orelse pdf "/DecodeParms" "/DP" dict with
| Some (Pdf.Array (Pdf.Null::_)) -> 1
| Some (Pdf.Dictionary _ as d)
| Some (Pdf.Array (Pdf.Dictionary _ as d::_)) ->
begin match Pdf.lookup_direct pdf "/EarlyChange" d with
| Some (Pdf.Integer n) -> n
| None -> 1
| _ -> raise (Pdf.PDFError "malformed /EarlyChange")
end
| _ -> 1
in
decode_lzw early i
| "/CCITTFaxDecode" | "/CCF" ->
begin match
Pdf.lookup_direct_orelse pdf "/DecodeParms" "/DP" dict
with
| None -> decode_CCITTFax 0 false false 1728 0 true false 0 i
| Some (Pdf.Dictionary _ as dparms)
| Some (Pdf.Array (dparms::_)) ->
(* Copes with null ok, because lookup_direct used below *)
let dparms = Pdf.direct pdf dparms in
let k =
match Pdf.lookup_direct pdf "/K" dparms with
| Some (Pdf.Integer i) -> i
| _ -> 0
in let eol =
match Pdf.lookup_direct pdf "/EndOfLine" dparms with
| Some (Pdf.Boolean b) -> b
| _ -> false
in let eba =
match Pdf.lookup_direct pdf "/EncodedByteAlign" dparms with
| Some (Pdf.Boolean b) -> b
| _ -> false
in let c =
match Pdf.lookup_direct pdf "/Columns" dparms with
| Some (Pdf.Integer i) -> i
| _ -> 1728
in let r =
match Pdf.lookup_direct pdf "/Rows" dparms with
| Some (Pdf.Integer i) -> i
| _ -> 0
in let eob =
match Pdf.lookup_direct pdf "/EndOfBlock" dparms with
| Some (Pdf.Boolean b) -> b
| _ -> true
in let bone =
match Pdf.lookup_direct pdf "/BlackIs1" dparms with
| Some (Pdf.Boolean b) -> b
| _ -> false
in let dra =
match
Pdf.lookup_direct pdf "/DamagedRowsBeforeError" dparms
with
| Some (Pdf.Integer i) -> i
| _ -> 0
in
decode_CCITTFax k eol eba c r eob bone dra i
| _ -> raise (Pdf.PDFError "bad Decodeparms")
end
| "/JBIG2Decode" ->
begin match jbig2dec with
| None ->
raise (DecodeNotSupported (Printf.sprintf "JBIG2Decode requires jbig2dec"))
| Some jbig2dec ->
match Pdf.lookup_direct_orelse pdf "/DecodeParms" "/DP" dict with
| Some (Pdf.Dictionary _ as dparms)
| Some (Pdf.Array (dparms::_)) ->
let jbig2globals =
match Pdf.lookup_direct pdf "/JBIG2Globals" dparms with
| Some s ->
Pdf.getstream s;
begin match s with
| Pdf.Stream {contents = _, Pdf.Got b} -> Some b
| _ -> None
end
| _ -> None
in
decode_jbig2 jbig2globals jbig2dec i
| _ -> decode_jbig2 None jbig2dec i
end
| name ->
raise (DecodeNotSupported (Printf.sprintf "Unknown: %s" name))
(* Decode at most one stage. *)
let decode_one ?jbig2dec pdf dict source =
match Pdf.lookup_direct_orelse pdf "/Filter" "/F" dict with
| None | Some (Pdf.Array []) ->
begin match source with
| StreamSource s -> s
| InputSource _ -> raise (DecodeNotSupported "decode_one")
end
| Some (Pdf.Name n) | Some (Pdf.Array (Pdf.Name n::_)) ->
let decoded = decoder ?jbig2dec pdf dict source n in
let decodeparms =
match Pdf.lookup_direct_orelse pdf "/DecodeParms" "/DP" dict with
| Some (Pdf.Dictionary d)
| Some (Pdf.Array (Pdf.Dictionary d::_)) -> Pdf.Dictionary d
| _ -> Pdf.Dictionary []
in
begin match Pdf.lookup_direct pdf "/Predictor" decodeparms with
| None | Some (Pdf.Integer 1) -> decoded
| Some (Pdf.Integer pred) ->
let colors =
match Pdf.lookup_direct pdf "/Colors" decodeparms with
| Some (Pdf.Integer n) -> n
| None -> 1
| _ -> raise (Pdf.PDFError "malformed /Colors")
in let bits_per_component =
match Pdf.lookup_direct pdf "/BitsPerComponent" decodeparms with
| Some (Pdf.Integer n) -> n
| None -> 8
| _ -> raise (Pdf.PDFError "malformed /BitsPerComponent")
in let columns =
match Pdf.lookup_direct pdf "/Columns" decodeparms with
| Some (Pdf.Integer n) -> n
| None -> 1
| _ -> raise (Pdf.PDFError "malformed /Columns")
in
begin try
decode_predictor
pred colors bits_per_component columns decoded
with
_ -> raise (Couldn'tDecodeStream "Predictor")
end
| _ -> raise (Pdf.PDFError "Malformed /Predictor")
end
| _ ->
raise (Pdf.PDFError "PDF.decode: Bad filter specification")
(* Need to make sure /Filter, /F, /DecodeParms, /DP are not indirect. d on entry
is a name -> pdfobject map *)
let prepare_decoder pdf d =
map
(function
(("/Filter" | "/F" | "/DecodeParms" | "/DP") as k, v) ->
k, Pdf.direct pdf v
| x -> x)
d
(* Remove a single decoder from a filter list. Also remove the first entry of a
DecodeParms array *)
let remove_decoder d =
let d' =
match lookup "/Filter" d, lookup "/F" d with
| None, None -> d
| Some (Pdf.Name _ | Pdf.Array [_]), None ->
lose (fun (n, _) -> n = "/Filter") d
| None, Some (Pdf.Name _ | Pdf.Array [_]) ->
lose (fun (n, _) -> n = "/F") d
| Some (Pdf.Array (_::t)), _ -> replace "/Filter" (Pdf.Array t) d
| _, Some (Pdf.Array (_::t)) -> replace "/F" (Pdf.Array t) d
| _ -> raise (Pdf.PDFError "PDF.remove_decoder: malformed /Filter")
in
match lookup "/DecodeParms" d', lookup "/DP" d' with
| None, None -> d'
| Some (Pdf.Dictionary _ | Pdf.Array []), _ -> remove "/DecodeParms" d'
| _, Some (Pdf.Dictionary _ | Pdf.Array []) -> remove "/DP" d'
| Some (Pdf.Array (_::t)), _ -> replace "/DecodeParms" (Pdf.Array t) d'
| _, Some (Pdf.Array (_::t)) -> replace "/DP" (Pdf.Array t) d'
| _ -> raise (Pdf.PDFError "PDF.remove_decoder: malformed /DecodeParms")
(* Decode at most one stage. *)
let decode_pdfstream_onestage ?jbig2dec pdf stream =
Pdf.getstream stream;
match stream with
| Pdf.Stream
({contents = (Pdf.Dictionary d as dict, Pdf.Got s)} as stream_contents) ->
begin match
Pdf.direct pdf (Pdf.lookup_fail "no /Length" pdf "/Length" dict)
with
| Pdf.Integer _ -> () (*i if l <> bytes_size s then raise (PDFError "Wrong /Length") i*)
| _ -> raise (Pdf.PDFError "No /Length")
end;
let stream' = decode_one ?jbig2dec pdf dict (StreamSource s) in
let d' =
replace
"/Length"
(Pdf.Integer (bytes_size stream'))
(remove_decoder (prepare_decoder pdf d))
in
stream_contents := (Pdf.Dictionary d', Pdf.Got stream')
| _ -> raise (Pdf.PDFError "Pdf.decode_pdfstream: not a valid Stream")
let string_of_pdf = ref (fun _ -> "")
(* Decode until there's nothing left to do. *)
let rec decode_pdfstream ?jbig2dec pdf = function
| Pdf.Stream {contents = d, _} as stream ->
Pdf.getstream stream;
begin match Pdf.lookup_direct_orelse pdf "/Filter" "/F" d with
| None -> ()
| Some (Pdf.Name _ | Pdf.Array _) ->
begin
decode_pdfstream_onestage ?jbig2dec pdf stream;
match stream with
| Pdf.Stream {contents = d', _} ->
if !string_of_pdf d = !string_of_pdf d' then () else
decode_pdfstream ?jbig2dec pdf stream
| _ -> assert false
end
| _ -> raise (Pdf.PDFError "Pdf.remove_decoder: malformed /Filter")
end
| Pdf.Indirect i ->
decode_pdfstream ?jbig2dec pdf (Pdf.direct pdf (Pdf.Indirect i))
| _ -> raise (Pdf.PDFError "Pdf.decode_pdfstream: malformed Stream")
(* Decode a stream until a decoding isn't supported. *)
let decode_pdfstream_until_unknown ?jbig2dec pdf s =
try decode_pdfstream ?jbig2dec pdf s with
DecodeNotSupported _ -> ()
(* Decode from an input. *)
let decode_from_input i dict =
match Pdf.lookup_direct_orelse (Pdf.empty ()) "/F" "/Filter" dict with
| Some (Pdf.Name _) ->
Some (decode_one (Pdf.empty ()) dict (InputSource i))
| Some (Pdf.Array (_::t)) ->
let stream = decode_one (Pdf.empty ()) dict (InputSource i) in
let rec decode_rest stream = function
| [] -> stream
| Pdf.Name _::more ->
let filters =
Pdf.lookup_direct_orelse (Pdf.empty ()) "/F" "/Filter" dict
in let decodeparms =
Pdf.lookup_direct_orelse
(Pdf.empty ()) "/DP" "/DecodeParms" dict
in
let dict = Pdf.remove_dict_entry dict "/Filter" in
let dict = Pdf.remove_dict_entry dict "/F" in
let dict = Pdf.remove_dict_entry dict "/DP" in
let dict = Pdf.remove_dict_entry dict "/DecodeParms" in
let strip = function
| Some (Pdf.Array (_::t)) -> Pdf.Array t
| _ -> Pdf.Array []
in
let decodeparms = strip decodeparms
and filters = strip filters in
let dict = Pdf.add_dict_entry dict "/DP" decodeparms in
let dict = Pdf.add_dict_entry dict "/F" filters in
let stream =
decode_one (Pdf.empty ()) dict (StreamSource stream)
in
decode_rest stream more
| _ -> raise (Pdf.PDFError "Malformed filter array")
in
Some (decode_rest stream t)
| _ -> raise (Couldn'tDecodeStream "No or bad filter")
(* Encoding streams *)
(* Supported encodings. *)
type encoding =
| ASCIIHex
| ASCII85
| RunLength
| Flate
| CCITT of int * int
| CCITTG4 of int * int
type predictor =
TIFF2
| PNGNone
| PNGSub
| PNGUp
| PNGAverage
| PNGPaeth
| PNGOptimum
(* The name of an encoding. *)
let name_of_encoding = function
| ASCIIHex -> "/ASCIIHexDecode"
| ASCII85 -> "/ASCII85Decode"
| RunLength -> "/RunLengthDecode"
| Flate -> "/FlateDecode"
| CCITT _ | CCITTG4 _ -> "/CCITTFaxDecode"
(* Add an encoding to the dictionary d. *)
let add_encoding length pdf encoding d =
let filter' =
match Pdf.lookup_direct pdf "/Filter" d with
| None ->
Pdf.Name (name_of_encoding encoding)
| Some (Pdf.Name n) ->
Pdf.Array (Pdf.Name (name_of_encoding encoding)::[Pdf.Name n])
| Some (Pdf.Array a) ->
Pdf.Array (Pdf.Name (name_of_encoding encoding)::a)
| _ -> raise (Pdf.PDFError "Malformed /Filter")
in
Pdf.replace_dict_entry
(Pdf.add_dict_entry d "/Filter" filter') "/Length" (Pdf.Integer length)
(* Find the encoding function. *)
let encoder_of_encoding ?im = function
| ASCIIHex -> encode_ASCIIHex
| ASCII85 -> encode_ASCII85
| RunLength -> encode_runlength
| Flate -> encode_flate
| CCITT (cols, rows) -> encode_ccitt cols rows
| CCITTG4 (cols, rows) -> encode_ccittg4 ?im cols rows
(* For now, just for xref streams *)
let process_prediction_data predictor predictor_columns d =
match predictor with
PNGUp -> encode_predictor 12 1 8 predictor_columns d
| _ -> raise (Pdf.PDFError "process_prediction_data")
let process_prediction predictor predictor_columns stream =
match stream with
{contents = d, Pdf.Got s} ->
begin match predictor with
Some PNGUp ->
let data =
process_prediction_data PNGUp predictor_columns s
and d' =
let decodeparms =
Pdf.Dictionary
[("/Columns", Pdf.Integer predictor_columns);
("/Predictor", Pdf.Integer 12)]
in
Pdf.add_dict_entry d "/DecodeParms" decodeparms
in
(d', data)
| _ -> raise (Pdf.PDFError "Encode predictor not supported")
end
| _ -> assert false
(* Encode a PDF stream with an encoding. *)
let encode_pdfstream pdf encoding ?im ?(only_if_smaller=false) ?predictor ?(predictor_columns = 1) stream =
Pdf.getstream stream;
match stream with
| Pdf.Stream ({contents = d, Pdf.Got s} as stream) ->
let d', predicted =
if predictor <> None
then process_prediction predictor predictor_columns stream
else d, s
in
let data = encoder_of_encoding ?im encoding predicted in
let d'' = add_encoding (bytes_size data) pdf encoding d' in
if not only_if_smaller || bytes_size data + 20 < bytes_size s then stream := d'', Pdf.Got data
| _ -> raise (Pdf.PDFError "Pdf.encode_pdfstream: malformed Stream")
|