]> mj.ucw.cz Git - paperjam.git/blob - TODO
page->bbox renamed to page->image_box
[paperjam.git] / TODO
1 - Integrate pdf-tools.cc with the rest of the code
2 - What if an input page specifies /Rotate?
3 - Better error messages from instantiation
4 - "-f" switch
5 - nup(crop): take max of all bboxes first?
6
7 | # Position bbox on a new paper
8 | paper("a4")
9 | paper(w=210mm,h=297mm,pos=(t|b|c)(l|r|c))
10
11 | # Scale paper to a new size
12 | scaleto("a4")
13 | scaleto(w=210mm,h=297mm,pos=tl)
14
15 | # Fit image to a paper
16 | # If paper is given: scale image
17 | # If no paper is given: adjust paper to image + margins
18 | fit("a4")
19 | fit(w=, h=)
20 | margin= hmargin= vmargin=
21 | lmargin= rmargin= tmargin= bmargin=
22 | pos=
23
24 | # Adjust paper size
25 | expand(10mm)
26 | expand(h=10mm, v=20mm)
27 | expand(l=10mm, r=10mm, t=10mm, b=10mm)
28
29 | # Adjust image size (in terms of margins around)
30 | margins ... params like expand
31
32 cropmarks
33         mark=box        # Box around image
34         mark=cross      # Crosses in the corners
35         mark=out        # Out-pointing half-crosses in the corners (default)
36         mark=in         # In-pointing half-crosses
37         pen=1pt         # Line width
38         len=5mm         # Cross arm length
39         dist=5mm        # Distance from border
40
41 | book
42 |       signature=<n>
43
44 # Crop to image box
45 crop
46         bleed=5mm       # Allow bleeding over the image box
47
48 # Can be written as: mix(cat) { modulo(2){1}, modulo(2){2} }
49 duplex
50         long-edge
51
52 | merge
53
54 | modulo
55 |       half
56
57 | # Add an empty page after the current one
58 | add-blank
59 |       n=
60 |       paper...
61
62 # Set either:
63 #       - paper size + margins
64 #       - scale + margins
65 nup(hnum, vnum)
66         by=rows/cols    # Filling order (default: rows)
67         by=tile         # Tile with copies of a single page
68         paper / w / h   # Specify paper size, default=copy from 1st image
69         + fit options (*margin, pos)
70         tpos=...        # Position of images inside their tiles (default: tl)
71         crop            # Crop to image
72         rotate=1        # Override rotation decision
73         scale=1         # Override scaling factor
74         hspace / vspace / space # Distance between tiles
75         + cropmarks?
76
77 # Send pages to multiple pipes and merge their results
78 mix { ..., ..., ...}
79         cat             # Concatenate results (default is interleave)
80         cycle           # When one pipe ends earlier, cycle it from start
81         pad             # When one pipe ends earlier, add blank pages