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 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357
|
% CPDF(1)
% Coherent Graphics Ltd
% February 2026
# NAME
cpdf - PDF command line tools.
# SYNOPSIS
Simple operation:
**cpdf** [in.pdf] \[operation] \[options] \[-o out.pdf]
Operation on password-protected file:
**cpdf** in.pdf \[user=\<password>] \[owner=\<password>] ... \[-o out.pdf]
Multiple operations, one after another:
**cpdf** [in.pdf] \[operation] \[options] **AND** \[operation] \[options] **AND**
... \[-o out.pdf]
# DESCRIPTION
**Cpdf** is an AGPL-licensed command line tool for processing PDF files. The
rest of this document gives a brief description of each command line operation
and option. The file cpdfmanual.pdf which you should find installed on your
system or otherwise at https://www.coherentpdf.com/cpdfmanual.pdf gives the
full usage details.
The sections in this document follow the chapters of cpdfmanual.pdf, for easy
cross-referencing.
# 1. BASIC USAGE
**-version**
: Print the Cpdf version number.
**-help, --help**
: Gives links to sources of help.
**-summary**
: Lists and describes very briefly each command line option.
**-o** \<filename>
: The output filename. Beware of writing back to the input file.
**-i** \<filename>
: Cpdf automatically treats any filename ending with .pdf (any case) as an
input PDF. If your file does not end with .pdf, you can supply the file with
**-i** instead.
**-range** \<range>
: Gives the range of pages to be affected by an operation. By default, all
pages are affected. The range may be specified without **-range** simply by
writing it directly after the filename it relates to. Example ranges: "2" "1-5"
"1,2,3-end" "odd" "NOT1-5". See cpdfmanual.pdf for a full description.
**-progress**
: Show which operations and on which pages they are operating, as it happens,
on standard error.
**-keep-version**
: Keep the PDF version of the input document even if features are used which
would otherwise make it increase.
**-fast**
: Presume ISO-compliant content streams when processing page content. This is
faster, because it does not involve re-parsing whole streams to add content.
**-idir** \<path>
: Add a whole directory of PDFs as inputs.
**-idir-only-pdfs**
: Restrict **-idir** to only files ending in .pdf (any case). Must appear
before **-idir**.
**-recrypt**
: Re-encrypt output files using the same encryption parameters (if any) as the
input file.
**-decrypt-force**
: Allow the output file to be written decrypted even if permissions would
otherwise prevent it.
**-stdout**
: Write the output file to standard output instead of to a file with **-o**.
**-stdin**
: Read the input PDF from standard input instead of from a named file.
**-stdin-user** \<password>
: Supply the user password for the PDF which is from standard input.
**-stdin-owner** \<password>
: Supply the owner password the the PDF which is from standard input.
**-producer** \<string>
: Set the producer of the output file.
**-creator** \<string>
: Set the creator of the output file.
**-change-id**
: Change the PDF's ID field when writing the output file.
**-l**
: Linearize the PDF when writing. Requires a linearizer to be supplied with
**-cpdflin**.
**-cpdflin** \<path>
: Give the path of an external linearizer. For example, Qpdf.
**-keep-l**
: Keep the linearization status (either linearized or not) of the input file
upon output. Requires a linearizer to be supplied with **-cpdflin**.
**-no-preserve-objstm**
: Do not preserve existing object streams when writing the output file. Note
that **-create-objstm** and **-no-preserve-objstm** may be used together - the
effect is then to redo all object streams.
**-create-objstm**
: Create new object streams when writing the output file. Note that
**-create-objstm** and **-no-preserve-objstm** may be used together - the
effect is then to redo all object streams.
**-args** \<filename>
: Read command line arguments from the given file by direct textual
substitution into the command line, prior to any other processing.
**-args-json** \<filename>
: Read command line arguments from a JSON file consisting of a single array of
strings.
**-utf8**
: Read and write string data as UTF8. Almost always the sensible option, and
will become the default in a future version.
**-stripped**
: Convert string output to 7 bit ASCII by dropping any high characters. To be
used with caution.
**-raw**
: Perform no processing on string outputs.
**-gs** \<path>
: A very few of Cpdf's functions rely upon the **gs** command. Its path may be
supplied with **-gs**.
**-gs-malformed**
: This option is used to allow Cpdf to call out to the **gs** command to
pre-process badly malformed files as a last resort.
**-gs-malformed-force**
: See cpdfmanual.pdf for details of this fragile command.
**-gs-quiet**
: Do not show the output of **gs** when used.
**-error-on-malformed**
: Do not attempt to reconstruct malformed files by any method, but exit with an
error.
# 2. MERGING AND SPLITTING
## Merging
**cpdf -merge in1.pdf** \[\<range>] **in2.pdf** \[\<range>] \[\<more
names/ranges>] \[-collate] \[-collate-n \<n>] \[-retain-numbering]
\[-merge-add-bookmarks \[-merge-add-bookmarks-use-titles]]
\[-remove-duplicate-fonts] \[-process-struct-trees] \[-subformat \<subformat>]
**-o out.pdf**
The **-merge** operation allows the merging of several files into one.
Ranges can be used to select only a subset of pages from each
input file in the output. The output file consists of the concatenation of all
the input pages in the order specified on the command line. Actually, the
**-merge** can be omitted, since this is the default operation of Cpdf.
**-collate**
: Instead of ordinary operation, take the first page from the first document,
then the first from the second and so on. Then the second page from the first
document and on until all pages are exhausted.
**-collate-n** \<n>
: Like **-collate**, but in chunks of more than one page.
**-retain-numbering**
: Keep the page numbering of each input file intact, rather than renumbering
the pages in the output document beginning at 1.
**-merge-add-bookmarks \[-merge-add-bookmarks-use-titles]**
: Add a top-level bookmark for each file, using the filename. The option
**-merge-add-bookmarks-use-titles**, when used in conjunction with
**-merge-add-bookmarks**, uses the titles from document metadata instead.
**-remove-duplicate-fonts**
: Ensures that fonts used in more than one input appear only once in the output.
**-process-struct-trees**
: Merge input structure trees in the output.
**-subformat** \<subformat>
: If **-subformat** "PDF/UA-2" is given, together with
**-process-struct-trees**, Cpdf will add a top-level Document structure tree
element.
## Portfolios
A PDF portfolio is a special kind of PDF which contains other documents (PDF and
otherwise) within it. Support is mostly limited to Adobe products at time of
writing.
**cpdf** **-portfolio** **in.pdf** -pf \<filename> \[-pfd \<string>] \[-pfr \<relationship>]
\[-pf ...] **-o out.pdf**
The input **in.pdf** here is the main file. You can build a blank one with **-create-pdf**.
**-pf** \<filename>
: The filename for each file to include in the portfolio.
**-pfd** \<description>
: The description for the file (must appear after **-pf**).
**-pfr** \<relationship>
: The so-called relationship for the file (must appear after **-pf**).
## Splitting
We can split an input PDF into its constituent pages, and output one PDF for
each page or each chunk of pages.
**cpdf -split in.pdf** \[-chunk \<n>] \[-process-struct-trees] \[-utf8] **-o
\<format>**
The output format has many options (see cpdfmanual.pdf for details). But the
simplest is just to number the outputs in sequence. For example **cpdf in.pdf
-o out%%%.pdf** will produce out001.pdf, out002.pdf and so on.
**-chunk** \<n>
: Choose a chunk size other than 1.
**-process-struct-trees**
: Split the input document's structure tree into the output documents.
**-utf8**
: This option may be required in the case of some output formats. See
cpdfmanual.pdf for details.
## Splitting on bookmarks
**cpdf -split-bookmarks \<level> in.pdf** \[-process-struct-trees] \[-utf8] **-o \<format>**
Split on bookmark boundaries at a given level, instead of splitting on each
page. Level 0 is top level, level 1 next, and so on. See above for format
details.
**-process-struct-trees**
: Split the input document's structure tree into the output documents.
**-utf8**
: This option may be required in the case of some output formats. See
cpdfmanual.pdf for details.
## Splitting to a given size
**cpdf -split-max \<n> in.pdf** \[-process-struct-trees] \[-utf8] **-o \<format>
**
Split the file, if possible, to a maximum file size (in bytes) for each output
PDF. See above for format details.
**-process-struct-trees**
: Split the input document's structure tree into the output documents.
**-utf8**
: This option may be required in the case of some output formats. See
cpdfmanual.pdf for details.
## Interleaved splitting
We can use **-spray** to write the split pages to more than one named output
file. When Cpdf runs out of output files, it adds the next page to the first
output file, and so on until all input pages are exhausted.
**cpdf -spray in.pdf** \[-process-struct-trees] \[-utf8] **-o a.pdf** \[-o b.pdf \[-o ...]]
**-process-struct-trees**
: Split the input document's structure tree into the output documents.
**-utf8**
: This option may be required in the case of some output formats. See
cpdfmanual.pdf for details.
# 3. PAGES
**cpdf -scale-page "\<x scale> \<y scale>"** **in.pdf** \[\<range>] \[-fast]
\[\<position>] **-o out.pdf**
Scale pages in the given range by the given factor e.g "2 2". See Chapter 8 for
information on positions.
**cpdf -scale-to-fit "\<x size> \<y size>"** **in.pdf** \[\<range>] \[-fast]
\[-prerotate] \[\<position>] \[-scale-to-fit-scale \<scale>]
\[-scale-to-fit-rotate-clockwise] \[-scale-to-fit-rotate-anticlockwise] **-o
out.pdf**
Scale pages in the given range to fit the given size e.g "a4paper" or "10in
7in", without altering the aspect ratio. By default the content will be
centered on the new page. See Chapter 8 for information on positions.
**-scale-to-fit-scale** \<n>
: Scale to a proportion of the available area, instead of filling it. For
example 0.9 for 90 percent.
**-scale-to-fit-rotate-clockwise -scale-to-fit-rotate-anticlockwise**
: Automatically rotate page to maximise use of area.
**-prerotate**
: Remove any viewing rotation before beginning.
**cpdf -stretch "\<x size> \<y size>"** **in.pdf** \[\<range>] \[-fast] **-o out.pdf**
Scale pages without regard to aspect ratio.
**cpdf -center-to-fit "\<x size> \<y size>"** **in.pdf** \[\<range>] \[-fast] **-o
out.pdf**
Center each page on a new page size, without scaling it.
**cpdf -scale-contents \<scale>** **in.pdf** \[\<range>] \[\<position>] \[-fast] **-o
out.pdf**
Scale the content of pages by a given factor, without changing the size
of the page. See the end of this chapter for position.
**cpdf -shift "\<shift x> \<shift y>"** **in.pdf** \[\<range>] \[-fast] **-o out.pdf**
Shift the content of pages by a given displacement.
**cpdf -shift-boxes "\<shift x> \<shift y>"** **in.pdf** \[\<range>] **-o out.pdf**
Shift the boxes of a page by a given displacement, without moving the content.
**cpdf -rotate \<angle> in.pdf** \[\<range>] **-o out.pdf**
Change the PDF viewing rotation of pages to 0, 90, 180 or 270 degrees clockwise.
**cpdf -rotateby \<angle> in.pdf** \[\<range>] **-o out.pdf**
Change the PDF viewing rotation of pages by 0, 90, 180 or 270 degrees clockwise.
**cpdf -upright** **in.pdf** \[\<range>] \[-fast] **-o out.pdf**
The **-upright** operation does whatever combination of **-rotate** and
**-rotate-contents** is required to change the rotation of the document to zero
without altering its appearance. In addition, it makes sure the media box has
its origin at (0,0), changing other boxes to compensate.
**cpdf -rotate-contents \<angle>** **in.pdf** \[\<range>] \[-fast] **-o out.pdf**
Rotates the content of the page around its center point by the given angle.
**cpdf -hflip** **in.pdf** \[\<range>] \[-fast] **-o out.pdf**
Flip page content horizontally.
**cpdf -vflip** **in.pdf** \[\<range>] \[-fast] **-o out.pdf**
Flip page content vertically.
**cpdf -\[media | crop | art | trim | bleed]box \<boxspec> in.pdf** \[\<range>] **-o out.pdf**
Set the media, crop, art, trim or bleed box. For example **-cropbox "50 50 300
200"** sets minx 50, miny 50, width 300, height 200. To use absolute numbers
instead of width and height, prefix with a question mark, writing **"?50 50 350
250"** instead.
**cpdf -remove-\[crop | art | trim | bleed]box in.pdf** \[\<range>] **-o out.pdf**
Remove a crop, art, trim or bleed box from pages.
**cpdf -frombox \<boxname> -tobox \<boxname>** **in.pdf** \[\<range>] \[-mediabox-if-missing] **-o out.pdf**
Copy a box to another. For example from **/TrimBox** to **/CropBox**.
**-mediabox-if-missing**
: Use media box, rather than failing, if the **-frombox** is missing.
**cpdf -hard-box \<boxname>** **in.pdf** \[\<range>] \[-fast] \[-mediabox-if-missing] **-o out.pdf**
Create a hard box for a given box name - that is to say, one which clips its content.
**cpdf -show-boxes** **in.pdf** \[\<range>] \[-fast] **-o out.pdf**
Show the media, crop, art, trim, and bleed boxes in Red, Green, Blue, Orange
and Pink respectively.
**cpdf -trim-marks** **in.pdf** \[\<range>] \[-fast] **-o out.pdf**
Add trim marks to a PDF. The trim box must be present.
# 4. ENCRYPTION AND DECRYPTION
**cpdf -encrypt \<method> \[-pw=]\<owner password> \[-pw=]\<user password>** **in.pdf** \[-no-encrypt-metadata]
\<permissions> **-o out.pdf**
Encrypt a document given the method (e.g **AES256ISO** for modern usage), owner
and user passwords, and optionally permissions. E.g **cpdf -encrypt AES256ISO
secret "" in.pdf -o out.pdf**.
**-no-encrypt-metadata**
: Do not encrypt metadata (AES encryption only).
**-pw=**\<password>
: Useful if a password may begin with a dash.
Permissions:
**-no-edit**
: Cannot change the document.
**-no-print**
: Cannot print the document.
**-no-copy**
: Cannot select or copy text or graphics.
**-no-annot**
: Cannot add or change form fields or annotations.
**-no-forms**
: Cannot edit form fields.
**-no-extract**
: Cannot extract text or graphics.
**-no-assemble**
: Cannot, for example, merge files.
**-no-hq-print**
: Cannot print high-quality.
Note: Adobe Acrobat and Adobe Reader may show slightly different permissions in info dialogues – this
is a result of policy changes and not a bug in Cpdf. You may need to experiment.
**cpdf -decrypt** **in.pdf owner=\<owner password>** \[-decrypt-force] **-o out.pdf**
: Decrypt a document, given its owner password.
**-decrypt-force**
: Decrypt even without the owner password, using just the user password. The
user password is often blank.
# 5. COMPRESSION
**cpdf -decompress** **in.pdf** \[-just-content] \[-jbig2dec \<path>] **-o out.pdf**
Decompress the streams in a PDF file, for instance to manually inspect it.
**-just-content**
: Only decompress page content streams.
**-jbig2dec** \<path>
: Give the path to the jbig2dec program which Cpdf uses, if available, to
decompress JBIG2 streams.
**cpdf -compress in.pdf -o out.pdf**
Compress any streams which are uncompressed using the FlateDecode method,
with the exception of metadata streams.
**cpdf -squeeze in.pdf** \[-squeeze-log-to \<filename>] \[-squeeze-no-pagedata] **-o out.pdf**
Squeeze a file by coalescing like objects, and various other methods.
**-squeeze-log-to** \<filename>
: Write the squeeze log to file rather than standard output.
**-squeeze-no-pagedata**
: Avoid processing page data, making the squeeze process much faster at the cost of a little compression.
**cpdf -remove-article-threads in.pdf -o out.pdf**
Remove article threads.
**cpdf -remove-page-piece in.pdf -o out.pdf**
Remove page piece information.
**cpdf -remove-web-capture in.pdf -o out.pdf**
Remove web capture data.
**cpdf -remove-procsets in.pdf -o out.pdf**
Remove ProcSets, a now-irrelevant data structure from early PDFs.
**cpdf -remove-output-intents in.pdf -o out.pdf**
Remove output intents, a colour-matching system for documents intended to be printed.
# 6. BOOKMARKS
**cpdf -list-bookmarks** **in.pdf** \[-utf8]
Print bookmark data to standard output. The data includes level, title,
page number linked to, and full link data. Use **-utf8** always. For example:
```
0 "Part 1" 1 open
1 "Part 1A" 2 "[2 /XYZ 200 400 null]"
1 "Part 1B" 3
0 "Part 2" 4
1 "Part 2a" 5
```
**cpdf -list-bookmarks-json** **in.pdf** \[-preserve-actions]
Print bookmark data to standard output in JSON format instead. Here is a single
entry in the JSON array of bookmarks:
```
{ "level": 0,
"text": "1 Basic Usage",
"page": 17,
"open": false,
"target":
[ { "I": 17 },
{ "N": "/XYZ" },
{ "F": 85.039 },
{ "F": 609.307 },
null ]
"colour": [ 0.0, 0.0, 0.0 ],
"italic": false,
"bold": false
}
```
**-preserve-actions**
: Instead of resolving complex destinations types to simple ones, keep the originals.
**cpdf -remove-bookmarks in.pdf -o out.pdf**
Remove all bookmarks from a PDF.
**cpdf -add-bookmarks \<filename> in.pdf -o out.pdf**
Add bookmarks, given an old-style bookmark file.
**cpdf -add-bookmarks-json \<filename> in.pdf -o out.pdf**
Add bookmarks, given a new-style JSON bookmark file.
**cpdf -bookmarks-open-to-level \<n> in.pdf -o out.pdf**
Set all bookmarks up to and including a given level to be open.
**cpdf -table-of-contents** **in.pdf** \[-toc-title \<string>] \[-toc-no-bookmark] \[-toc-dot-leaders]
\[-font \<font>] \[-font-size \<n>] \[-embed-std14 \<path>]
\[-process-struct-trees] \[-subformat \<subformat>] **-o out.pdf**
Generate a typeset table of contents from existing bookmarks, adding it to
the beginning of the document.
**-toc-title** \<string>
: Title (default is "Table of Contents").
**-toc-no-bookmark**
: Do not add an entry for the new table of contents in the document's bookmarks.
**-toc-dot-leaders**
: Add dot leaders.
**-font** \<font>
: Give the font (default Times Roman).
**-font-size** \<n>
: Give the font size (default 12pt).
**-embed-std14**
: Embed standard 14 fonts given their path (see cpdfmanual.pdf for details).
**-process-struct-trees**
: Create a structure tree for the new table of contents and merge it with the
document's.
**-subformat** \<subformat>
: Add **-subformat "PDF/UA-2"** when adding a table of contents to a PDF/UA-2
file to keep compatibility.
# 7. PRESENTATIONS
**cpdf -presentation in.pdf** \[\<range>] **-o out.pdf** \[-trans \<transition-name>]
\[-duration \<float>] \[-vertical] \[-outward] \[-direction \<n>]
\[-effect-duration \<float>]
Make a slide-show presentation from a PDF.
**-trans** \<transition>
The transition style, one of **Split**, **Blinds**, **Box**, **Wipe**,
**Dissolve**, **Glitter**.
**-duration** \<n>
: Time in seconds before presentation advances (default: no automatic
advancement).
**-vertical**
: Select vertical blinds for transition type Blinds.
**-outward**
: Select outward sweep for transition type Box.
**-direction** \<n>
: Direction for Wipe and Glitter styles. See cpdfmanual.pdf for full
information.
**-effect-duration** \<n>
: Length in seconds of the transition itself.
# 8. TEXT AND STAMPS
**cpdf \[-stamp-on | -stamp-under] stamp.pdf** **in.pdf** \[\<range>]
\[-scale-stamp-to-fit] \[\<positioning command>] \[-relative-to-cropbox]
\[-process-struct-trees] \[-fast] **-o out.pdf**
Stamp a one-page PDF over or under each page in the given range. The
positioning commands described later in this chapter may be used to choose
where to stamp it (default, bottom left of media box).
**-scale-stamp-to-fit**
: Scale the stamp to fit the page before applying it.
**-relative-to-cropbox**
: Take the positioning command relative to the crop box rather than the media box.
**-process-struct-trees**
: Maintain tagged PDF. The main file will keep its structure; the stamp will be
marked as an artifact.
**cpdf -combine-pages over.pdf under.pdf** [-fast] [-prerotate] [-no-warn-rotate]
[-process-struct-trees] [-underneath] [-stamp-scale-to-fit] **-o out.pdf**
Combine the pages of two PDFs, page 1 of the first with page 1 of the second
and so on.
**-prerotate**
: Remove any rotation differences between the files before combining.
**-no-warn-rotate**
: Do not warn of unresolved rotation differences.
**-underneath**
: Reverse the order of "over" and "under" files.
**-process-struct-trees**
: Maintain tagged PDF. The "under" file will keep its structure; the "over"
file will be marked as an artifact.
**cpdf \[-add-text \<string> | -add-rectangle "\<x size> \<y size>"]** [-font \<fontname>]
[-font-size \<n>] [-load-ttf \<name>=\<filename>] [-embed-std14 \<path>]
[-color \<color>] [-line-spacing \<n>] [-outline] [-linewidth \<n>]
[-underneath] [-relative-to-cropbox] [-prerotate] [-no-warn-rotate] [-bates
\<n>] [-bates-at-range \<n>] [-bates-pad-to \<n>] [-opacity
\<n>] [-midline] [-topline] [-fast] [-process-struct-trees] **in.pdf**
\[\<range>] **-o out.pdf**
Add text to a PDF. Various special codes for page numbers or time and date
may be used. For example:
```
%Page Page number in arabic notation (1, 2, 3. . . )
%PageDiv2 Page number in arabic notation divided by two
%roman Page number in lower-case roman notation (i, ii, iii. . . )
%Roman Page number in upper-case roman notation (I, II, III. . . )
%EndPage Last page of document in arabic notation
%Label The page label of the page
%EndLabel The page label of the last page
%filename The full file name of the input document
%URL[text|URL] Add text, which links to URL (does not work for diagonal text)
%Bookmark<n> Bookmark text at level n (0, 1, 2, 3, 4)
%Bates Bates number
```
And date and time formats:
```
%a Abbreviated weekday name (Sun, Mon etc.)
%A Full weekday name (Sunday, Monday etc.)
%b Abbreviated month name (Jan, Feb etc.)
%B Full month name (January, February etc.)
%d Day of the month (01-31)
%e Day of the month (1-31)
%H Hour in 24-hour clock (00-23)
%I Hour in 12-hour clock (01-12)
%j Day of the year (001-366)
%m Month of the year (01-12)
%M Minute of the hour (00-59)
%p "a.m" or "p.m"
%S Second of the minute (00-61)
%T Same as %H:%M:%S
%u Weekday (1-7, 1 = Sunday)
%w Weekday (0-6, 0 = Sunday)
%Y Year (0000-9999)
%% The % character
```
\\n may be used to demarcate multiple lines.
**-font** \<font>
: Give the font (default Times Roman). Options are:
```
Times-Roman
Times-Bold
Times-Italic
Times-BoldItalic
Helvetica
Helvetica-Bold
Helvetica-Oblique
Helvetica-BoldOblique
Courier
Courier-Bold
Courier-Oblique
Courier-BoldOblique
```
**-font-size** \<n>
: Give the font size (default 12pt).
**-load-ttf** \<name>=\<filename>
: Load a truetype font, and give it name which may be used with -font. For
example **-load-ttf A=NotoSans-Black.ttf**.
**-embed-std14** \<path>
: Embed the standard 14 fonts given the path to the URW Base35 free fonts.
**-color** \<color>
: Choose the text colour using one (Grey), three (RGB), or four (CMYK) numbers
from 0-1. E.g **-color "0.5 0.4 0.5"**.
**-line-spacing** \<n>
: Set the spacing for multi-line text (default 1).
**-outline**
: Use outline text.
**-linewidth** \<n>
: Line width for outline text.
**-underneath**
: Put the text underneath the page instead of on top of the page.
**-relative-to-cropbox**
: Positions are relative to the crop box, rather than the media box.
**-prerotate**
: Remove any viewing rotation before adding text.
**-no-warn-rotate**
: Do not warn of unresolved viewing rotation.
**-bates** \<n>
: Set the bates number for use with **%Bates**.
**-bates-at-range** \<n>
: Set the bates number for the first page in the range.
**-bates-pad-to** \<n>
: Pad bates numbers to a given number of leading zeros.
**-opacity** \<n>
: Set text opacity. Wholly opaque is 1, wholly transparent is 0.
**-midline**
: Position is relative to the midline of text rather than the baseline.
**-topline**
: Position is relative to the topline of text rather than the baseline.
**-process-struct-trees**
: Maintain tagged PDF, for example with PDF/UA. The main file will keep its
structure; the stamped text will be marked as an artifact.
Positioning commands:
**-pos-left** "\<x> \<y>"
: Position the left of the baseline of the text at (x, y).
**-pos-center** "\<x> \<y>"
: Position the center of the baseline of the text at (x, y).
**-pos-right** "\<x> \<y>"
: Position the right of the baseline of the text at (x, y).
**-top** \<n>
: Position the baseline of the text n pts from the top middle of the page.
**-topleft** \<n>
: Position the left of the baseline of the text n pts below and right of the
top left of the page.
**-topleft** "\<x> \<y>"
: Position the left of the baseline of the text y pts below and x pts right
of the top left of the page.
**-topright** \<n>
: Position the right of the baseline of the text n pts below and left of the
top right of the page.
**-topright** "\<x> \<y>"
: Position the right of the baseline of the text y pts below and x pts left
of the top right of the page.
**-left** \<n>
: Position the left of the baseline of the text n pts right of the left middle
of the page.
**-bottomleft** \<n>
: Position the left of the baseline of the text n pts up and right of the
bottom left of the page.
**-bottomleft** "\<x> \<y>"
: Position the left of the baseline of the text y pts up and x pts right of the
bottom left of the page.
**-bottom** \<n>
: Position the center of the baseline of the text n pts up from the bottom
middle of the page.
**-bottomright** \<n>
: Position the right of the baseline of the text n pts up and left from the
bottom right of the page.
**-bottomright** "\<x> \<y>"
: Position the right of the baseline of the text y pts up and x pts left from
the bottom right of the page.
**-right** \<n>
: Position the right of the baseline of the text n pts left of the center right
of the page.
**-diagonal**
: Position text diagonally, bottom left to top right.
**-reverse-diagonal**
: Position text diagonally, top left to bottom right.
**-center**
: Position text centered on the page.
**-justify-left**
: Set left justification for multi-line text. Default depends upon position.
**-justify-right**
: Set right justification for multi-line text. Default depends upon position.
**-justify-center**
: Set center justification for multi-line text. Default depends upon position.
**cpdf -remove-text in.pdf** \[\<range>] **-o out.pdf**
Remove text previously added by Cpdf.
**cpdf -prepend-content \<content> in.pdf** \[\<range>] **-o out.pdf**
A low-level operation to prepend raw content to the beginning of page streams.
**cpdf -postpend-content \<content> in.pdf** \[\<range>] **-o out.pdf**
A low-level operation to postpend raw content to the end of page streams.
**cpdf -stamp-as-xobject stamp.pdf in.pdf** \[\<range>] **-o out.pdf**
A low-level operation to add stamp.pdf as a Form XObject in the given pages
of a PDF and write to standard output its name.
# 9. MULTIPAGE FACILITIES
**cpdf [-pad-before | -pad-after] in.pdf** \[\<range>] \[-pad-with pad.pdf] **-o out.pdf**
Add blank pages before or after each page in the given range.
**-pad-with** \<filename>
: Use a separate PDF to act as the padding.
**cpdf -pad-every \<n> in.pdf** \[-pad-with pad.pdf] **-o out.pdf**
: Add a blank page after every n pages.
**-pad-with** \<filename>
: Use a separate PDF to act as the padding.
**cpdf [-pad-multiple | -pad-multiple-before]** \[\<n>] **in.pdf -o out.pdf**
Add as many blank pages as are required before or after the original pages to
make the file's length a multiple of the given number of pages
**cpdf -redact** **in.pdf** \[\<range>] \[-process-struct-trees] **-o out.pdf**
Remove the content of the pages in the given range entirely, including
annotations and any resources.
**-process-struct-trees**
: Process the document's structure tree to remove any parts which are marked as
relating to the now-redacted pages.
**cpdf \[-impose \<pagesize> | impose-xy "\<x> \<y>"]** **in.pdf**
\[-impose-columns] \[-impose-rtl] \[-impose-btt] \[-impose-margin \<n>]
\[-impose-spacing \<n>] \[-impose-linewidth \<n>] \[-fast]
\[-process-struct-trees] **-o out.pdf**
Cpdf has two imposition operations:
**-impose** fits multiple pages onto a given page size e.g **-impose
a4portrait** or **-impose "8in 12in"**
**-impose-xy** builds an output page with the x pages horizontally and y pages
vertically e.g **-impose-xy "2 3"**
**-impose-columns**
: Lay the pages out in columns rather than rows.
**-impose-rtl**
: Lay the pages out right to left.
**-impose-btt**
: Lay the pages out bottom to top.
**-impose-margin** \<n>
: Add a margin around the edge of each page. When using **-impose-xy** the page
size increases; with **-impose** the pages are scaled.
**-impose-spacing** \<n>
: Add spacing between rows and columns. When using **-impose-xy** the page size
increases; with **-impose** the pages are scaled.
**-impose-linewidth** \<n>
: Add a border around each input page. With **-impose** the pages are scaled after
the border is added, so you must account for this yourself.
**-process-struct-trees**
: Mark the file's content as an artifact for the purposes of imposition.
**cpdf -twoup-stack** **in.pdf** \[-fast] \[-process-struct-trees] **-o out.pdf**
**cpdf -twoup** **in.pdf** \[-fast] \[-process-struct-trees] **-o out.pdf**
Two old imposition functions which can now both be done with **-impose** /
**-impose-xy**. The **-twoup-stack** operation puts two logical pages on each
physical page, rotating them 90 degrees to do so. The new mediabox is thus
larger. Whereas the **-twoup** operation does the same, but scales the new
sides down so that the media box is unchanged.
**-process-struct-trees**
: Mark the file's content as an artifact for the purposes of imposition.
**cpdf -chop "\<x> \<y>"** **in.pdf** \[\<range>] \[-chop-columns] \[-chop-rtl] \[-chop-btt] **-o out.pdf**
The **-chop** operation cuts up a page into multiple pages, according to the
chosen grid.
**-chop-columns**
: Arrange by columns instead of rows.
**-chop-rtl**
: Arrange right to left.
**-chop-btt**
: Arrange bottom to top.
**cpdf \[-chop-h \<y> | -chop-v \<x>]** **in.pdf** \[\<range>] \[-chop-columns] **-o out.pdf**
Chop each page into two, vertically or horizontally, at the given position.
E.g **-chop-h 200pt**.
**-chop-columns**
: Reverse the order of pages in the output.
# 10. ANNOTATIONS
**cpdf -list-annotations in.pdf** \[\<range>]
List textual content of annotations to standard output. Each annotation is
preceded by the page number and followed by a newline.
**cpdf -list-annotations-json in.pdf** \[\<range>]
List annotation objects in JSON format. This includes all ancillary objects,
to support round-tripping. See cpdfmanual.pdf for full format details.
**cpdf -set-annotations \<filename>** **in.pdf** \[\<range>] \[-underneath] **-o out.pdf**
Set annotations from a JSON file. They will be added on top of any
annotations already present.
**-underneath**
: Put the annotations underneath instead of on top of existing ones.
**cpdf -copy-annotations from.pdf to.pdf** \[\<range>] **-o out.pdf**
Copy annotations from **from.pdf** to **to.pdf**.
**cpdf -remove-annotations in.pdf** \[\<range>] **-o out.pdf**
Remove annotations from the document.
# 11. DOCUMENT INFORMATION AND METADATA
**cpdf -info\[-json]** **in.pdf** \[-utf8] \[-in | -cm | -mm]
Print info about a document in plain text (**-info**) or JSON (**-info-json**). For example:
```
cpdf -info pdf_reference.pdf
Encryption: Not encrypted
Permissions:
Linearized: true
Object streams: true
ID: <0b1f990718e2a92c0c112fbf08b233fb> <b2f1dbee369e11d9b951000393c97fd8>
Version: 1.5
Pages: 1236
Title: PDF Reference, version 1.6
Author: Adobe Systems Incorporated
Subject: Adobe Portable Document Format (PDF)
Keywords:
Creator: FrameMaker 7.0
Producer: Acrobat Distiller 6.0.1 for Macintosh
Created: D:20041114084116Z
Modified: D:20041114163850-08'00'
Trapped: False
PageMode: UseOutlines
PageLayout:
OpenAction: [1/XYZ -32768 -32768 1]
HideToolbar:
HideMenubar:
HideWindowUI:
FitWindow:
CenterWindow:
DisplayDocTitle: True
NonFullScreenPageMode:
AcroForm: False
XFA: False
Marked: False
UserProperties: False
Suspects: False
MediaBox: 0.000000 0.000000 612.000000 792.000000
CropBox: 41.000000 63.000000 572.000000 729.000000
BleedBox:
TrimBox: various
ArtBox: various
Subformats:
Language: en-us
XMP dc:title: PDF Reference, version 1.6
XMP dc:creator: Adobe Systems Incorporated
XMP dc:description: Adobe Portable Document Format (PDF)
```
**-utf8**
: Output in UTF8 format (plain text only)
**-in** / **-mm** / **-cm**
: Output dimensions in inches, millimetres or centimetres instead of points.
**cpdf -page-info\[-json]** **in.pdf** \[\<range>] \[-in | -cm | -mm]
List page information in plain (**-page-info**) or JSON (**-page-info-json**) format.
```
cpdf -page-info 14psfonts.pdf
Page 1:
Label: i
MediaBox: 0.000000 0.000000 600.000000 450.000000
CropBox: 200.000000 200.000000 500.000000 500.000000
BleedBox:
TrimBox:
ArtBox:
Rotation: 0
Annotations: 0
```
**-in** / **-mm** / **-cm**
: Output dimensions in inches, millimetres or centimetres instead of points.
**cpdf -pages in.pdf**
Print the number of pages in the file.
**cpdf -set-title \<string>** **in.pdf** \[-also-set-xmp] \[-just-set-xmp] **-o out.pdf**
**cpdf -set-author \<string>** **in.pdf** \[-also-set-xmp] \[-just-set-xmp] **-o out.pdf**
**cpdf -set-subject \<string>** **in.pdf** \[-also-set-xmp] \[-just-set-xmp] **-o out.pdf**
**cpdf -set-keywords \<string>** **in.pdf** \[-also-set-xmp] \[-just-set-xmp] **-o out.pdf**
**cpdf -set-creator \<string>** **in.pdf** \[-also-set-xmp] \[-just-set-xmp] **-o out.pdf**
**cpdf -set-producer \<string>** **in.pdf** \[-also-set-xmp] \[-just-set-xmp] **-o out.pdf**
Set metadata.
**cpdf -set-create \<date>** **in.pdf** \[-also-set-xmp] \[-just-set-xmp] **-o out.pdf**
**cpdf -set-modify \<date>** **in.pdf** \[-also-set-xmp] \[-just-set-xmp] **-o out.pdf**
Set creation or modification dates. See Appendix A of cpdfmanual.pdf for details of the PDF date format.
**cpdf -set-trapped in.pdf** \[-also-set-xmp] \[-just-set-xmp] **-o out.pdf**
**cpdf -set-untrapped in.pdf** \[-also-set-xmp] \[-just-set-xmp] **-o out.pdf**
Set the trapped status of a PDF.
**-also-set-xmp**
: Set the XMP metadata if the field is present, in addition to setting the
old-style PDF metadata.
**-just-set-xmp**
: Just set the XMP metadata, if the field is present, in addition to the old-style PDF metadata.
**cpdf -set-page-layout \<layout> in.pdf -o out.pdf**
Set the page layout: one of **SinglePage**, **OneColumn**, **TwoColumnLeft**,
**TwoColumnRight**, **TwoPageLeft**, **TwoPageRight**
**cpdf -set-page-mode \<mode> in.pdf -o out.pdf**
Set the page mode: one of **UseNone**, **UseOutlines**, **UseThumbs**,
**FullScreen**, **UseOC**, **UseAttachments**.
**cpdf -set-non-full-screen-page-mode \<mode> in.pdf -o out.pdf**
Set the non full screen mode for a PDF with FullScreen page mode: one of
**UseNone**, **UseOutlines**, **UseThumbs**, **UseAttachments**.
**cpdf -hide-toolbar \<true | false> in.pdf -o out.pdf**
Hide or reveal the viewer's toolbar.
**cpdf -hide-menubar \<true | false> in.pdf -o out.pdf**
Hide or reveal the viewer's menubar.
**cpdf -hide-window-ui \<true | false> in.pdf -o out.pdf**
Hide or reveal the window's scroll bars.
**cpdf -fit-window \<true | false> in.pdf -o out.pdf**
Resize the document's windows to fit the size of the first page.
**cpdf -center-window \<true | false> in.pdf -o out.pdf**
Position the document window in the center of the screen.
**cpdf -display-doc-title \<true | false> in.pdf -o out.pdf**
Display the document title instead of the file name in the title bar.
**cpdf -open-at-page \<n> in.pdf -o out.pdf**
Set the document to open at the given page number.
**cpdf -open-at-page-fit \<n> in.pdf -o out.pdf**
Set the document to open at the given page number scaled to fit the window.
**cpdf -open-at-page-custom \<destination> in.pdf -o out.pdf**
Set the document to open at a custom destination. See cpdfmanual.pdf for details.
**cpdf -set-language \<language> in.pdf -o out.pdf**
Set the document's global language, for example "en-US"
**cpdf -set-metadata \<filename> in.pdf -o out.pdf**
Replace or add XMP metadata.
**cpdf -remove-metadata in.pdf -o out.pdf**
Remove the main XMP metadata stream.
**cpdf -remove-all-metadata in.pdf -o out.pdf**
Remove all XMP metadata streams.
**cpdf -print-metadata in.pdf**
Print the XMP metadata stream to standard output.
**cpdf -extract-all-metadata in.pdf -o \<path>**
Extract XMP metadata streams to the given directory.
**cpdf -create-metadata in.pdf -o out.pdf**
Create or replace XMP metadata from old-style metadata.
**cpdf -set-metadata-date \<date> in.pdf -o out.pdf**
Set the XMP metadata date. See Appendix A in cpdfmanual.pdf for date format details.
**cpdf -add-page-labels in.pdf** \[\<range>] \[-label-style \<style>]
\[-label-prefix \<string>] \[-label-startval \<n>] \[-labels-progress] **-o out.pdf**
Add page labels to a PDF. Multiple calls may be used to add multiple ranges of page labels.
**-label-style**
: One of **DecimalArabic**, **LowercaseRoman**, **UppercaseRoman**, **LowercaseLetters**,
**UppercaseLetters**, **NoLabelPrefixOnly**.
**-label-prefix**
: The textual prefix for these labels.
**-label-startval**
: By default the labels begin at page number 1 for each range. To override
this, we can use **-label-startval**.
**-labels-progress**
: make sure the start value progresses between sub-ranges when the page range
specified is disjoint, e.g "1-9, 30-40" or "odd".
**cpdf -remove-page-labels in.pdf -o out.pdf**
Remove the page labels.
**cpdf -print-page-labels\[-json] in.pdf**
Print the page labels in plain text (**-print-page-labels**) or JSON
(**-print-page-labels-json**) format.
**cpdf -composition\[-json] in.pdf**
Print the composition of a PDF, showing how much space is taken by images, fonts etc.
```
cpdf -composition cpdfmanual.pdf
Images: 0 bytes (0.00%)
Fonts: 144731 bytes (46.72%)
Content streams: 132767 bytes (42.85%)
Structure Info: 0 bytes (0.00%)
Attached Files: 0 bytes (0.00%)
XRef Table: 21082 bytes (6.80%)
Piece Info: 0 bytes (0.00%)
Unclassified: 11229 bytes (3.62%)
```
# 12. FILE ATTACHMENTS
**cpdf -attach-file \<filename>** **in.pdf** \[-to-page \<n>] \[-afd \<string>]
\[-afr \<relationship>] \[-attach-file ...] **-o out.pdf**
Attach a file to a PDF, given its filename.
**-to-page** \<n>
: Instead of attaching globally, add it as an attachment on a single page.
**-afd** \<string>
: Supply the textual description for this attachment.
**-afr** \<relationship>
: Supply the so-called Relationship for this attachment.
**cpdf -list-attached-files** **in.pdf** \[-json] \[-include-data]
List attached files.
**-json**
: List attached files in JSON format. See cpdfmanual.pdf for full details.
**-include-data**
: Include the attachment file data when listing in JSON format.
**cpdf -remove-files in.pdf -o out.pdf**
Remove attached files from a PDF.
**cpdf -dump-attachments in.pdf -o \<path>**
Extract the attachments to a given directory.
# 13. IMAGES
**cpdf -list-images\[-json]** **in.pdf** \[\<range>] \[-inline]
List the images in a file together with their object number, page numbers,
image name, width, height, size in bytes, bits per pixel, colour space,
compression method, mask type and mask object number. Either in plain text
(**-list-images**) or JSON (**-list-images-json**).
**-inline**
: Also list inline images.
**cpdf -list-images-used\[-json]** **in.pdf** \[\<range>] \[-inline]
**cpdf -image-resolution\[-json] \<n>** **in.pdf** \[\<range>] \[-inline]
The **-list-images-used** and **-list-images-used-json** operations list the images
at point of use with their page number, image name, width in pixels, height in
pixels, x resolution, y resolution and object number. Using **-image-resolution**
or **-image-resolution-json** instead reports only such images as do not reach a
minimum resolution.
**-inline**
: Also list inline images.
**cpdf -extract-images in.pdf** \[\<range>] \[-im \<path>] \[-p2p \<path>] \[-dedup |
-dedup-perpage] \[-raw] \[-inline] \[-merge-masks] **-o \<path>**
Extract images to a given path e.g "output/%%%", which would create
output/001.jpg, output/002.png and so on. JPEG, JPEG2000 and lossless JBIG2
images are extracted directly. Lossy JBIG2 images are extracted in sections.
Other images are written as PNGs, processed with ImageMagick.
**-im** \<path>
: Provide path to ImageMagick.
**-p2p** \<path>
: Provide path to pnmtopng if ImageMagick not available.
**-dedup**
: Deduplicate images, extracting only once even if multiply-included.
**-dedup-per-page**
: Deduplicate images, but only per-page.
**-raw**
: Output .pnm files instead of .png.
**-inline**
: Also extract inline images.
**-merge-masks**
: Merge soft masks with their images when extracting.
**cpdf -extract-single-image \<object number>** **in.pdf** \[-im \<path>] \[-p2p \<path>]
\[-raw] \[-merge-masks] **-o \<filename>**
Extract a single image, given its object number. Other flags as above.
**cpdf -process-images** **in.pdf** \[\<range>] \[-process-images-info]
\[-process-images-force] \[-im \<filename>] [-jbig2enc \<filename>] \[-jbig2dec
\<filename>] [-lossless-resample[-dpi] \<n> | -lossless-to-jpeg \<n>]
\[-jpeg-to-jpeg \<n>] \[-jpeg-to-jpeg-scale \<n>] \[-lossless-to-jpeg2000 \<n>]
\[-jpeg2000-to-jpeg2000 \<n>] \[-jpeg-to-jpeg-dpi \<n>] \[-1bpp-method
\<method>] \[-jbig2-lossy-threshold \<n>] \[-pixel-threshold \<n>]
\[-length-threshold \<n>] \[-percentage-threshold \<n>] \[-dpi-threshold \<n>]
\[-resample-interpolate] **-o out.pdf**
Re-process existing images within the PDF, typically to reduce size. For a
full commentary, see cpdfmanual.pdf.
**-process-images-info**
: Show the work being done.
**-process-images-force**
: Process image even when size would increase.
**-im** \<path>
: Supply path to ImageMagick.
**-jbig2enc** \<path>
: Supply path to jbig2enc.
**-jbig2dec** \<path>
: Supply path to jbig2dec.
**-lossless-resample** \<n>
: Resample lossless images to the given percentage scale.
**-lossless-resample-dpi** \<n>
: Resample lossless images to a given DPI resolution.
**-lossless-to-jpeg** \<n>
: Convert lossless images to JPEG at the given quality level.
**-jpeg-to-jpeg** \<n>
: Reprocess JPEG images to the given quality level.
**-jpeg-to-jpeg-scale** \<n>
: Reprocess JPEG images to the given percentage scale.
**-jpeg-to-jpeg-dpi** \<n>
: Reprocess JPEG images to the given DPI resolution.
**-lossless-to-jpeg2000** \<n>
: Convert lossless images to JPEG 2000 at the given quality level.
**-jpeg2000-to-jpeg2000** \<n>
: Reprocess JPEG 2000 images to the given quality level.
**-1bpp-method** \<1bppmethod>
: Specify method for 1bpp images. One of **JBIG2Lossy**, **JBIG2Lossless**, **CCITT**, **CCITTG4**.
**-jbig2-lossy-threshold** \<n>
: Set the threshold for lossy JBIG2 compression.
**-pixel-threshold** \<n>
: Images below this number of pixels not processed (default 25).
**-length-threshold** \<n>
: Images with less than this number of bytes not processed (default 100).
**-percentage-threshold** \<n>
: Results not below this percentage of original size discarded (default 90).
**-dpi-threshold** \<n>
: Only image above this threshold at all use points processed (default no dpi threshold).
**-resample-interpolate**
: Use interpolation when resampling.
**cpdf -rasterize in.pdf** \[\<range>] \[-gs \<path>]
\[-rasterize\[-gray | -1bpp | -jpeg | -jpeggray]] \[-rasterize-res \<n>]
\[-rasterize-jpeg-quality \<n>] \[-rasterize-no-antialias |
-rasterize-downsample] \[-rasterize-annots] \[-rasterize-alpha] **-o out.pdf**
Rasterize each page, replacing the page content with the rasterized version
in the output PDF.
**-gs** \<path>
: Supply path to gs.
**-rasterize-gray**
: Use grayscale instead of colour.
**-rasterize-1bpp**
: Use monochrome instead of colour.
**-rasterize-jpeg**
: Use JPEG instead of lossless compression.
**-rasterize-jpeggray**
: Use grayscale JPEG instead of lossless compression.
**-rasterize-res** \<n>
: Set the resolution (default 144dpi).
**-rasterize-jpeg-quality** \<n>
: Set JPEG image quality (0..100).
**-rasterize-no-antialias**
: Turn off anti-aliasing.
**-rasterize-downsample**
: Use better but slower anti-aliasing.
**-rasterize-annots**
: Rasterize annotations instead of retaining.
**-rasterize-alpha**
: Produce an alpha channel (lossless only)
**cpdf -output-image in.pdf** \[\<range>] \[-gs \<path>]
\[-rasterize\[-gray | -1bpp | -jpeg | -jpeggray] \[-rasterize-res \<n>]
\[-rasterize-jpeg-quality \<n>] \[-rasterize-no-antialias |
-rasterize-downsample] \[-rasterize-annots] \[-rasterize-alpha] \[-tobox
\<boxname>] **-o \<format>**
Output rasterized images for each page to the given folder and format e.g
"dir/%%%.png" would create dir/001.png and so on. Options as above and:
**-tobox** \<boxname>
: Specify the box to rasterize (default **/MediaBox**).
# 14. FONTS
**cpdf -list-fonts\[-json] in.pdf**
List the fonts on each page in a file together with their types. Either in
plain text (**-list-fonts**) or JSON (**-list-fonts-json**) format.
**cpdf -print-font-table \<font name>** **in.pdf** [-print-font-table-page \<n>]
Print a font table for a given font name and page, e.g:
```
cpdf -print-font-table /XYPLPB+NimbusSanL-Bold -print-font-table-page 2 cpdfmanual.pdf
67 = U+0043 (C - LATIN CAPITAL LETTER C) = /C
68 = U+0044 (D - LATIN CAPITAL LETTER D) = /D
70 = U+0046 (F - LATIN CAPITAL LETTER F) = /F
71 = U+0047 (G - LATIN CAPITAL LETTER G) = /G
...
```
**cpdf -copy-font fromfile.pdf** **in.pdf** \[\<range>] -copy-font-page \<n> -copy-font-name \<name> **-o out.pdf**
A low-level operation to copy a font from one file to another.
**-copy-font-page** \<n>
: The page from which to copy the font.
**-copy-font-name** \<n>
: The (PDF) name of the font.
**cpdf -remove-fonts in.pdf -o out.pdf**
Remove fonts from a file.
**cpdf -missing-fonts in.pdf**
Report missing fonts - i.e those which are unembedded.
**cpdf -embed-missing-fonts -gs \<path to gs> in.pdf -o out.pdf**
Use gs to embed missing fonts into a PDF. Note: putting a PDF file through gs
in this manner may not be lossless: some metadata may not be preserved.
**cpdf -extract-font \<n>,\<pdf font name> in.pdf -o out.font**
Extract a font file from a PDF given a page number, font name pair e.g:
cpdf -extract-font 5,/F50 in.pdf -o out.ttf
# 15. PDF AND JSON
**cpdf in.pdf -output-json** \[-output-json-parse-content-streams]
\[-output-json-no-stream-data] \[-output-json-decompress-streams]
\[-output-json-clean-strings] \[-utf8] **-o out.json**
Convert PDF to a JSON format which may be inspected, or edited and
round-tripped back into PDF.
**-output-json-parse-content-streams**
: Parse the content streams into JSON too.
**-output-json-no-stream-data**
: Elide stream data. This makes a smaller file, but bars round-tripping.
**-output-json-decompress-streams**
: Keep the streams intact, and decompress them.
**-output-json-clean-strings**
: Deprecated in favour of **-utf8** below.
**-utf8**
: Use UTF8 rather than PDFDocEncoding for strings, to make them more easily editable.
**cpdf -j in.json -o out.pdf**
Convert a JSON file to a PDF file.
# 16. OPTIONAL CONTENT GROUPS
**cpdf -ocg-list in.pdf**
List the optional content groups in the PDF, one per line, to standard output.
**cpdf -ocg-rename in.pdf -ocg-rename-from \<a> -ocg-rename-to \<b> -o out.pdf**
Rename an optional content group given the old and new names.
**cpdf -ocg-order-all in.pdf -o out.pdf**
Ensure that every optional content group appears in the order list.
**cpdf -ocg-coalesce-on-name in.pdf -o out.pdf**
Coalesce optional content groups. For example, if we merge or stamp two files
both with an OCG called "Layer 1", we will have two different optional content
groups. This command will merge them into a single optional content group.
# 17. CREATING NEW PDFS
**cpdf -create-pdf** \[-create-pdf-pages \<n>] \[-create-pdf-papersize \<papersize>] **-o out.pdf**
Create a new PDF (default: one page, A4 portrait).
**-create-pdf-pages** \<n>
: Give the number of pages.
**-create-pdf-papersize** \<papersize>
: Give the paper size, e.g "a3landscape" or "200pt 600pt"
**cpdf -typeset \<filename>** \[-create-pdf-papersize \<papersize>] \[-font \<font>]
\[-font-size \<n>] \[-subformat \<subformat>] \[-title \<string>] **-o out.pdf**
Typeset a text file into a PDF.
**-create-pdf-papersize** \<papersize>
: Give the paper size.
**-font** \<font>
: The font (default Times-Roman)
**-font-size** \<n>
: The font size (default 12pt)
**-subformat** \<subformat>
: Specify PDF/UA-1 or PDF/UA-2 to make a conforming file.
**-title** \<string>
: Specify a title when using **-subformat** for a PDF/UA file.
**cpdf -jpeg \<filename>** \[-subformat \<subformat>] \[-title \<string>] **-o
out.pdf**
**cpdf -png \<filename>** \[-subformat \<subformat>] \[-title \<string>] **-o out.pdf**
**cpdf -jpeg2000 \<filename>** \[-subformat \<subformat>] \[-title \<string>] **-o
out.pdf**
Build a PDF from an image file (JPEG, PNG or JPEG2000).
**-subformat** \<subformat>
: Specify PDF/UA-1 or PDF/UA-2 to make a conforming file.
**-title** \<string>
: Specify a title when using **-subformat** for a PDF/UA file.
**cpdf** \[-jbig2-global \<filename>] **-jbig2 \<filename>** \[-jbig2-global |
-jbig2-global-clear] \[-jbig2 \<filename>] ... \[-subformat \<subformat>]
\[-title \<string>] **-o out.pdf**
Make a multi-page PDF from one or more PDF-appropriate JBIG2 fragments
prepared by the jbig2enc program. For example, in lossless mode:
**cpdf -jbig2 1.jbig2 -jbig2 2.jbig2 -jbig2 3.jbig2 -o out.pdf**
In lossy mode, jbig2globals segments may be specified:
**cpdf -jbig2-global 0.jbig2globals -jbig2 1.jbig2 -jbig2 2.jbig2 -jbig2 3.jbig2 -o out.pdf**
**-jbig2-global** \<filename>
: Change the jbig2global segment in use.
**-jbig2-global-clear**
: Cease use of jbig2global segment, and return to lossless mode.
**-subformat** \<subformat>
: Specify PDF/UA-1 or PDF/UA-2 to make a conforming file.
**-title** \<string>
: Specify a title when using **-subformat** for a PDF/UA file.
# 18. DRAWING ON PDFS
**cpdf in.pdf** \[\<range>] [-draw-struct-tree] **-draw \<draw operations>** [-underneath] **-o out.pdf**
Draw on a PDF. See cpdfmanual.pdf for a tutorial, and full information.
**-draw-struct-tree**
: Produce structure information.
**-underneath**
: Draw underneath instead of on top of any existing page content.
**cpdf -text-width \<string>** \[-font \<font>] \[-fontsize \<n>]
Return the width of a string of text in a one of the standard 14 fonts. Used
for calculations of text position (e.g right-alignment).
**-font** \<font>
: Specify the font.
**-fontsize** \<n>
: Specify the font size.
**Building and showing paths**
**-rect** "x y w h"
: Draw rectangle.
**-to** "x y"
: Move to.
**-line** "x y"
: Add line to path.
**-bez** "x1 y1 x2 y2 x3 y3"
: Add Bezier curve to path.
**-bez23** "x2 y2 x3 y3"
: Add Bezier curve to path.
**-bez13** "x1 y1 x3 y3"
: Add Bezier curve to path.
**-circle** "x y r"
: Add circle to path.
**-stroke**
: Stroke path.
**-fill**
: Fill path.
**-filleo**
: Fill path, even odd.
**-strokefill**
: Stroke and fill path.
**-strokefilleo**
: Stroke and fill path, even odd.
**-close**
: Close path.
**Clipping with paths**
**-clip**
: Clip.
**-clipeo**
: Clip, even odd.
**Path parameters**
**-strokecol** "g" | "r g b" | "c y m k" | \<namedcolour>
: Set stroke colour.
**-fillcol** "g" | "r g b" | "c y m k" | \<namedcolour>
: Set fill colour.
**-thick** \<n>
: Set stroke thickness.
**-cap** \<butt | round | square>
: Set cap.
**-join** \<miter | round | bevel>
: Set join.
**-miter** \<n>
: Set miter limit.
**-dash** \<pattern>
: Set dash pattern.
**The graphics stack and matrices**
**-push**
: Push graphics stack.
**-pop**
: Pop graphics stack.
**-matrix** "a b c d e f"
: Append to graphics matrix.
**-mtrans** "tx ty"
: Translate the graphics matrix.
**-mrot** "x y a"
: Rotate the graphics matrix.
**-mscale** "x y sx sy"
: Scale the graphics matrix.
**-mshearx** "x y a"
: Shear the graphics matrix in X.
**-msheary** "x y a"
: Shear the graphics matrix in Y.
**Re-use with XObjects**
**-xobj-bbox** "x y w h"
: Specify the bounding box for xobjects.
**-xobj** \<name>
: Begin saving a sequence of graphics operators.
**-end-xobj**
: End saving a sequence of graphics operators.
**-use** \<name>
: Use a saved sequence of graphics operators.
**Images**
**-draw-jpeg** \<name>=\<filename>
: Load a JPEG from file and name it.
**-draw-png** \<name>=\<filename>
: Load a PNG from file and name it.
**-draw-jpeg2000** \<name>=\<filename>
: Load a JPEG2000 from file and name it.
**-image** \<name>
: Draw an image which has already been loaded.
**Transparency**
**-fill-opacity** \<n>
: Set opacity.
**-stroke-opacity** \<n>
: Set stroke opacity.
**Text**
**-bt**
: Begin text.
**-et**
: End text.
**-text** \<string>
: Draw text.
**-stext** \<string>
: Draw text with %specials.
**-para** \<paragraph>
: Typeset a paragraph.
**-paras** \<paragraph>
: Typeset multiple paragraphs.
**-indent** \<n>
: Set paragraph indent.
**-leading** \<n>
: Set leading.
**-charspace** \<n>
: Set character spacing.
**-wordspace** \<n>
: Set word space.
**-textscale** \<n>
: Set text scale.
**-rendermode** \<n>
: Set text rendering mode.
**-rise** \<n>
: Set text rise.
**-nl**
: New line.
**The Next Page**
**-newpage**
: Move to a fresh page.
**Structure Information**
**-draw-struct-tree**
: Add structure information. Must precede **-draw** on command line.
**-tag** \<name>
: Begin marked content.
**-end-tag**
: End marked content.
**-stag** \<name>
: Begin structure tree branch.
**-end-stag**
: End structure tree branch.
**-auto-tags**
: Automatically tag paragraphs and images.
**-no-auto-tags**
: Refrain from automatically tagging paragraphs and images.
**-artifact**
: Begin manual artifact.
**-end-artifact**
: End manual artifact.
**-no-auto-artifacts**
: Prevent automatic addition of artifacts during post-processing.
**-namespace** \<namespace>
: Set the namespace for future branches of the tree.
**-eltinfo** \<elt=string>
: Set element information.
**-end-eltinfo**
: Erase element information.
**-rolemap** \<rolemap>
: Set role map.
# 19. ACCESSIBLE PDFS WITH PDF/UA
**cpdf -print-struct-tree in.pdf**
Print a PDF's structure tree to standard output for inspection.
**cpdf -extract-struct-tree in.pdf -o out.json**
Extract the whole structure tree in JSON format. See cpdfmanual.pdf for details.
**cpdf -replace-struct-tree in.json in.pdf -o out.pdf**
Replace a PDF's structure tree with one from a JSON file.
**cpdf -remove-struct-tree in.pdf -o out.pdf**
Remove the structure tree from a file.
**cpdf -mark-as-artifact in.pdf -o out.pdf**
Mark all the content of the file as being an artifact.
**cpdf -verify "PDF/UA-1(matterhorn)"** **in.pdf** \[-verify-single \<test>] \[-json]
Verify conformance with PDF/UA-1.
**-json**
: Output conformance failures in JSON rather than plain text format.
**-verify-single** \<test>
: Verify just one test. See cpdfmanual.pdf for list of tests.
**cpdf -mark-as \["PDF/UA-1" | "PDF/UA-2"] in.pdf -o out.pdf**
Mark a PDF as conforming to PDF/UA-1 or PDF/UA-2
**cpdf -remove-mark \["PDF/UA-1" | "PDF/UA-2"] in.pdf -o out.pdf**
Remove conformance marker from a PDF.
**cpdf -create-pdf-ua-\<1 | 2> \<string>** \[-create-pdf-pages \<n>] \[-create-pdf-papersize \<papersize>] **-o out.pdf**
Create a new, blank, PDF/UA-1 or PDF/UA-2 file with the given title.
**-create-pdf-pages** \<n>
: Give the number of pages.
**-create-pdf-papersize** \<papersize>
: Give the paper size, e.g "a3landscape" or "200pt 600pt"
# 20. MISCELLANEOUS
**cpdf -draft** **in.pdf** \[\<range>] \[-boxes] \[-draft-remove-only \<n>] **-o out.pdf**
Remove bit-mapped (photographic) images from a PDF.
**-boxes**
: Replace each image with a crossed box to show where it was.
**-draft-remove-only**
: Remove only one image, with the given name. The name can be obtained from,
for example, **-list-images-used**.
**cpdf -remove-all-text in.pdf** \[\<range>] **-o out.pdf**
Remove all text from a PDF.
**cpdf -blacktext in.pdf** \[\<range>] **-o out.pdf**
Make all text black.
**cpdf -blacklines in.pdf** \[\<range>] **-o out.pdf**
Make all lines black.
**cpdf -blackfills in.pdf** \[\<range>] **-o out.pdf**
Make all fills black.
**cpdf -thinlines \<min thickness> in.pdf** \[\<range>] **-o out.pdf**
Make each line a minimum thickness. A negative value will instead thin lines
to the absolute of the value given. By processing twice, with a positive then
negative figure, it is therefore possible to clamp thicknesses to a range or
single value.
**cpdf -clean in.pdf -o out.pdf**
Deprecated. This work is now done by default upon writing any file.
**cpdf -set-version \<version number> in.pdf -o out.pdf**
Set the version of a PDF. E.g for version 1.4, use **-set-version 4**. For PDF
versions starting with 2, add ten to the number. E.g for PDF 2.0, use
**-set-version 10**.
**cpdf -copy-id-from source.pdf in.pdf -o out.pdf**
Copy the ID from one PDF to another.
**cpdf -remove-id in.pdf -o out.pdf**
Remove the ID from a PDF.
**cpdf -list-spot-colors in.pdf**
List the names of any separation colour spaces in a PDF.
**cpdf -print-dict-entry** **\<key> in.pdf** [-json]
**cpdf -remove-dict-entry \<key>** **in.pdf** [-dict-entry-search \<term>] **-o out.pdf**
**cpdf -replace-dict-entry \<key> -replace-dict-entry-value \<value>** **in.pdf** \[-dict-entry-search \<term>] **-o out.pdf**
Low level operations to edit PDF objects directly. See cpdfmanual.pdf for details.
**cpdf -remove-clipping in.pdf** \[\<range>] **-o out.pdf**
Remove any clipping paths from a PDF.
**cpdf -obj[-json] \<object specification> in.pdf**
**cpdf -replace-obj \<object specification>=\<object> in.pdf -o out.pdf**
**cpdf -remove-obj \<object number> in.pdf -o out.pdf**
**cpdf -extract-stream\[-decompress] \<object specification> in.pdf -o out.dat**
**cpdf -replace-stream \<object specification> -replace-stream-with \<filename> in.pdf -o out.pdf**
Low level operations to explore and edit PDF files object-by-object. See cpdfmanual.pdf for details.
**cpdf -contains-javascript in.pdf**
Prints true if the PDF contains JavaScript, false otherwise.
**cpdf -remove-javascript in.pdf -o out.pdf**
Remove JavaScript from a PDF.
# ENVIRONMENT
**CPDF_SHOW_EXT**
: Show command line of external commands as they are called if equal to "true".
**CPDF_DEBUG**
: Same as adding **-debug** to command line, if equal to "true".
**CPDF_REPRODUCIBLE_DATES**
: Expand data "now" to the same, false value each time, if equal to "true".
**CAMLPDF_REPRODUCIBLE_IDS**
: Produce the same file ID each time, if equal to "true".
# BUGS
See https://github.com/johnwhitington/cpdf-source/issues or email
contact@coherentgraphics.co.uk
|