4 * (c) 2018 Martin Mares <mj@ucw.cz>
16 class null_cmd : public cmd_exec {
18 null_cmd(cmd *c UNUSED) { }
19 vector<page *> process(vector<page *> &pages) override { return pages; }
22 static const arg_def no_args[] = {
26 /*** Generic routines ***/
30 class xform_page : public page {
34 void render(out_context *out, pdf_matrix xform) override;
35 xform_page(page *p, pdf_matrix xf);
38 xform_page::xform_page(page *p, pdf_matrix xf)
44 BBox media(p->width, p->height);
46 width = media.width();
47 height = media.height();
49 image_box = p->image_box;
50 image_box.transform(xf);
53 void xform_page::render(out_context *out, pdf_matrix parent_xform)
55 orig_page->render(out, xform * parent_xform);
58 // Commands acting on individual pages
60 class cmd_exec_simple : public cmd_exec {
61 virtual page *process_page(page *p) = 0;
62 vector<page *> process(vector<page *> &pages) override;
65 vector<page *> cmd_exec_simple::process(vector<page *> &pages)
69 out.push_back(process_page(p));
73 // Paper specifications
78 paper_spec(cmd *c, bool maybe=true)
80 arg_val *aname = c->arg("paper");
81 arg_val *aw = c->arg("w");
82 arg_val *ah = c->arg("h");
83 if (!aname->given() && !aw->given() && !ah->given() && maybe)
88 if (aw->given() != ah->given() || aname->given() == aw->given())
89 die("Either paper format name or width and height must be given");
92 const char *name = aname->as_string("").c_str();
93 const paper *pap = paperinfo(name);
95 die("No paper called %s is known", name);
96 w = paperpswidth(pap);
97 h = paperpsheight(pap);
101 w = aw->as_double(0);
102 h = ah->as_double(0);
108 { "paper", AT_STRING | AT_POSITIONAL }, \
112 // Position specification
117 pos_spec() { v = h = 0; }
121 die("Value of pos must have two characters");
124 else if (s[0] == 'c')
126 else if (s[0] == 'b')
129 die("First character of pos must be t/c/b");
132 else if (s[1] == 'c')
134 else if (s[1] == 'r')
137 die("Second character of pos must be l/c/r");
139 pos_spec(cmd *c) : pos_spec(c->arg("pos")->as_string("cc")) { }
140 pdf_matrix place(BBox &inner, BBox &outer)
143 m.shift(-inner.x_min, -inner.y_min);
149 m.shift((outer.width() - inner.width()) / 2, 0);
152 m.shift(outer.width() - inner.width(), 0);
162 m.shift(0, (outer.height() - inner.height()) / 2);
165 m.shift(0, outer.height() - inner.height());
170 m.shift(outer.x_min, outer.y_min);
183 margin_spec(cmd *c, string basic, string sx)
186 m = c->arg(basic)->as_double(0);
187 h = c->arg("h" + sx)->as_double(m);
188 v = c->arg("v" + sx)->as_double(m);
189 l = c->arg("l" + sx)->as_double(h);
190 r = c->arg("r" + sx)->as_double(h);
191 t = c->arg("t" + sx)->as_double(v);
192 b = c->arg("b" + sx)->as_double(v);
194 bool may_shrink(BBox *bb)
196 return (bb->width() > l+r && bb->height() > t+b);
198 void shrink_box(BBox *bb)
204 if (bb->x_min >= bb->x_max || bb->y_min >= bb->y_max)
205 die("Margins cannot be larger than the whole page");
207 void expand_box(BBox *bb)
216 #define MARGIN_ARGS1_NAMED(name) \
219 #define MARGIN_ARGS1_POSNL(name) \
220 { name, AT_DIMEN | AT_POSITIONAL }
222 #define MARGIN_ARGS2(sx) \
223 { "h" sx, AT_DIMEN }, \
224 { "v" sx, AT_DIMEN }, \
225 { "l" sx, AT_DIMEN }, \
226 { "r" sx, AT_DIMEN }, \
227 { "t" sx, AT_DIMEN }, \
232 class cropmark_spec {
243 string crop_cross(double x, double y, uint mask);
244 QPDFObjectHandle egstate;
246 cropmark_spec(cmd *c, const string prefix="", const string def_type="cross")
248 string t = c->arg(prefix + "mark")->as_string(def_type);
253 else if (t == "cross")
260 die("Invalid cropmark type %s", t.c_str());
262 pen_width = c->arg(prefix + "pen")->as_double(0.2);
263 arm_length = c->arg(prefix + "len")->as_double(5*mm);
264 offset = c->arg(prefix + "offset")->as_double(0);
265 egstate = QPDFObjectHandle::newNull();
267 string pdf_stream(out_context *out, BBox &box, pdf_matrix &xform);
270 string cropmark_spec::crop_cross(double x, double y, uint mask)
274 for (uint i=0; i<4; i++)
275 if (mask & (1U << i))
277 double x2 = x, y2 = y;
280 case 3: x2 -= arm_length; break;
281 case 2: x2 += arm_length; break;
282 case 1: y2 += arm_length; break;
283 case 0: y2 -= arm_length; break;
285 s += pdf_coord(x) + " " + pdf_coord(y) + " m " + pdf_coord(x2) + " " + pdf_coord(y2) + " l S ";
291 string cropmark_spec::pdf_stream(out_context *out, BBox &box, pdf_matrix &xform)
293 if (type == MARK_NONE)
298 s += xform.to_string() + " cm ";
300 if (egstate.isNull())
302 auto egs = QPDFObjectHandle::newDictionary();
303 egs.replaceKey("/Type", QPDFObjectHandle::newName("/ExtGState"));
304 egs.replaceKey("/LW", QPDFObjectHandle::newReal(pen_width, 1));
305 egs.replaceKey("/LC", QPDFObjectHandle::newInteger(2));
306 egs.replaceKey("/LJ", QPDFObjectHandle::newInteger(0));
307 egstate = out->pdf->makeIndirectObject(egs);
310 string egs_res = out->new_resource("GS");
311 out->egstates.replaceKey(egs_res, egstate);
312 s += egs_res + " gs ";
325 s += b.to_rect() + " re S ";
328 s += crop_cross(b.x_min, b.y_min, 0b1111);
329 s += crop_cross(b.x_max, b.y_min, 0b1111);
330 s += crop_cross(b.x_max, b.y_max, 0b1111);
331 s += crop_cross(b.x_min, b.y_max, 0b1111);
334 s += crop_cross(b.x_min, b.y_min, 0b0110);
335 s += crop_cross(b.x_max, b.y_min, 0b1010);
336 s += crop_cross(b.x_max, b.y_max, 0b1001);
337 s += crop_cross(b.x_min, b.y_max, 0b0101);
340 s += crop_cross(b.x_min, b.y_min, 0b1001);
341 s += crop_cross(b.x_max, b.y_min, 0b0101);
342 s += crop_cross(b.x_max, b.y_max, 0b0110);
343 s += crop_cross(b.x_min, b.y_max, 0b1010);
351 #define CROPMARK_ARGS(px) \
352 { px "mark", AT_STRING }, \
353 { px "pen", AT_DIMEN }, \
354 { px "len", AT_DIMEN }, \
355 { px "offset",AT_DIMEN }
357 // Scaling preserving aspect ratio
359 double scale_to_fit(BBox &from, BBox &to)
361 double fw = from.width(), fh = from.height();
362 double tw = to.width(), th = to.height();
363 if (is_zero(fw) || is_zero(fh) || is_zero(tw) || is_zero(th))
366 return min(tw/fw, th/fh);
371 class move_cmd : public cmd_exec_simple {
376 x = c->arg("x")->as_double(0);
377 y = c->arg("y")->as_double(0);
379 page *process_page(page *p) override
383 return new xform_page(p, m);
387 static const arg_def move_args[] = {
388 { "x", AT_DIMEN | AT_MANDATORY | AT_POSITIONAL },
389 { "y", AT_DIMEN | AT_MANDATORY | AT_POSITIONAL },
395 class scale_cmd : public cmd_exec_simple {
396 double x_factor, y_factor;
400 x_factor = c->arg("x")->as_double(1);
401 y_factor = c->arg("y")->as_double(x_factor);
403 page *process_page(page *p) override
406 m.scale(x_factor, y_factor);
407 return new xform_page(p, m);
411 static const arg_def scale_args[] = {
412 { "x", AT_DOUBLE | AT_MANDATORY | AT_POSITIONAL },
413 { "y", AT_DOUBLE | AT_POSITIONAL },
419 class rotate_cmd : public cmd_exec_simple {
424 deg = c->arg("deg")->as_int(0) % 360;
428 die("Rotate requires a multiple of 90 degrees");
430 page *process_page(page *p) override
439 m.shift(0, p->width);
443 m.shift(p->width, p->height);
447 m.shift(p->height, 0);
452 return new xform_page(p, m);
456 static const arg_def rotate_args[] = {
457 { "angle", AT_INT | AT_MANDATORY | AT_POSITIONAL },
463 class flip_cmd : public cmd_exec_simple {
469 horizontal = c->arg("h")->as_int(0);
470 vertical = c->arg("v")->as_int(0);
471 if (!horizontal && !vertical)
472 die("Flip has no direction specified");
474 page *process_page(page *p) override
480 m.shift(0, p->height);
485 m.shift(p->width, 0);
487 return new xform_page(p, m);
491 static const arg_def flip_args[] = {
499 class select_cmd : public cmd_exec {
506 vector<page *> process(vector<page *> &pages) override;
509 static int validate_page_index(vector<page *> &pages, int idx)
511 if (idx >= 1 && idx <= (int) pages.size())
513 if (idx <= -1 && idx >= (int) -pages.size())
514 return idx + pages.size();
515 die("Page index %d out of range", idx);
518 vector<page *> select_cmd::process(vector<page *> &pages)
521 for (auto pb: pipe->branches)
523 vector<page *> selected;
524 for (auto ps: pb->selectors)
526 int f = validate_page_index(pages, ps.from);
527 int t = validate_page_index(pages, ps.to);
528 int step = (f <= t) ? 1 : -1;
529 for (int i=f; f<=t; f += step)
530 selected.push_back(pages[i]);
532 auto processed = run_command_list(pb->commands, selected);
533 for (auto p: processed)
541 class apply_cmd : public cmd_exec {
548 vector<page *> process(vector<page *> &pages) override;
551 static pipeline_branch *find_branch(pipeline *pipe, vector <page *> &pages, int idx)
553 for (auto pb: pipe->branches)
554 for (auto ps: pb->selectors)
556 int f = validate_page_index(pages, ps.from);
557 int t = validate_page_index(pages, ps.to);
558 if (f <= idx && idx <= t || t <= idx && idx <= f)
564 vector<page *> apply_cmd::process(vector<page *> &pages)
571 pipeline_branch *pb = find_branch(pipe, pages, cnt);
576 auto processed = run_command_list(pb->commands, tmp);
577 for (auto q: processed)
590 class modulo_cmd : public cmd_exec {
597 n = c->arg("n")->as_int(0);
599 die("Modulo must have n > 0");
600 half = c->arg("half")->as_int(0);
603 vector<page *> process(vector<page *> &pages) override;
606 vector<page *> modulo_cmd::process(vector<page *> &pages)
609 int tuples = ((int) pages.size() + n - 1) / n;
610 int use_tuples = half ? tuples/2 : tuples;
612 for (int tuple=0; tuple < use_tuples; tuple++)
614 debug("# Tuple %d", tuple);
616 for (auto pb: pipe->branches)
619 for (auto ps: pb->selectors)
623 int step = (f <= t) ? 1 : -1;
624 for (int i=f; i<=t; i += step)
629 else if (i < 0 && i >= -n)
630 j = (tuples-1-tuple)*n + (-i) - 1;
632 die("Modulo: invalid index %d", i);
633 if (j < (int) pages.size())
634 tmp.push_back(pages[j]);
637 page *ref_page = pages[tuple*n];
638 tmp.push_back(new empty_page(ref_page->width, ref_page->height));
642 auto processed = run_command_list(pb->commands, tmp);
643 for (auto q: processed)
652 static const arg_def modulo_args[] = {
653 { "n", AT_INT | AT_MANDATORY | AT_POSITIONAL },
654 { "half", AT_SWITCH },
660 class draw_bbox_page : public page {
663 void render(out_context *out, pdf_matrix xform) override;
664 draw_bbox_page(page *p) : page(p) { orig_page = p; }
667 class draw_bbox_cmd : public cmd_exec_simple {
669 draw_bbox_cmd(cmd *c UNUSED) { }
670 page *process_page(page *p) override
672 return new draw_bbox_page(p);
676 void draw_bbox_page::render(out_context *out, pdf_matrix xform)
678 orig_page->render(out, xform);
681 xform.to_string() + " cm " +
683 image_box.to_rect() + " re S " +
689 class merge_cmd : public cmd_exec {
691 merge_cmd(cmd *c UNUSED) { }
692 vector<page *> process(vector<page *> &pages) override;
695 class merge_page : public page {
696 vector<page *> orig_pages;
698 merge_page(vector<page *> &orig) : page(0, 0)
708 image_box = p->image_box;
713 if (!is_equal(width, p->width) || !is_equal(height, p->height))
714 die("All pages participating in a merge must have the same dimensions");
715 image_box.join(p->image_box);
719 void render(out_context *out, pdf_matrix xform) override
721 for (auto p: orig_pages)
722 p->render(out, xform);
726 vector<page *> merge_cmd::process(vector<page *> &pages)
730 out.push_back(new merge_page(pages));
736 class paper_cmd : public cmd_exec_simple {
740 paper_cmd(cmd *c) : paper(c), pos(c) { }
741 page *process_page(page *p) override
743 BBox paper_box = BBox(paper.w, paper.h);
744 pdf_matrix xf = pos.place(p->image_box, paper_box);
745 page *q = new xform_page(p, xf);
752 static const arg_def paper_args[] = {
760 class scaleto_cmd : public cmd_exec_simple {
764 scaleto_cmd(cmd *c) : paper(c), pos(c) { }
765 page *process_page(page *p) override
767 BBox orig_box = BBox(p->width, p->height);
768 BBox paper_box = BBox(paper.w, paper.h);
770 xf.scale(scale_to_fit(orig_box, paper_box));
771 orig_box.transform(xf);
772 xf.concat(pos.place(orig_box, paper_box));
773 page *q = new xform_page(p, xf);
780 static const arg_def scaleto_args[] = {
788 class fit_cmd : public cmd_exec_simple {
793 fit_cmd(cmd *c) : paper(c, true), pos(c), marg(c, "margin", "margin") { }
794 page *process_page(page *p) override
799 if (!is_zero(paper.w) && !is_zero(paper.h))
801 // Paper given: scale image to fit paper
802 BBox orig_box = p->image_box;
803 BBox paper_box = BBox(paper.w, paper.h);
804 marg.shrink_box(&paper_box);
805 xf.scale(scale_to_fit(orig_box, paper_box));
806 orig_box.transform(xf);
807 xf.concat(pos.place(orig_box, paper_box));
808 q = new xform_page(p, xf);
814 // No paper given: adjust paper to fit image
815 xf.shift(-p->image_box.x_min, -p->image_box.y_min);
816 xf.shift(marg.l, marg.b);
817 q = new xform_page(p, xf);
818 q->width = p->image_box.width() + marg.l + marg.r;
819 q->height = p->image_box.height() + marg.t + marg.b;
825 static const arg_def fit_args[] = {
828 MARGIN_ARGS1_NAMED("margin"),
829 MARGIN_ARGS2("margin"),
835 class expand_cmd : public cmd_exec_simple {
838 expand_cmd(cmd *c) : marg(c, "by", "") { }
839 page *process_page(page *p) override
842 xf.shift(marg.l, marg.b);
843 page *q = new xform_page(p, xf);
844 q->width = p->width + marg.l + marg.r;
845 q->height = p->height + marg.t + marg.b;
846 if (q->width < 0.001 || q->height < 0.001)
847 die("Expansion must result in positive page dimensions");
852 static const arg_def expand_args[] = {
853 MARGIN_ARGS1_POSNL("by"),
860 class margins_cmd : public cmd_exec_simple {
863 margins_cmd(cmd *c) : marg(c, "size", "") { }
864 page *process_page(page *p) override
867 xf.shift(-p->image_box.x_min, -p->image_box.y_min);
868 xf.shift(marg.l, marg.b);
869 page *q = new xform_page(p, xf);
870 q->width = p->image_box.width() + marg.l + marg.r;
871 q->height = p->image_box.height() + marg.t + marg.b;
872 if (q->width < 0.001 || q->height < 0.001)
873 die("Margins must result in positive page dimensions");
878 static const arg_def margins_args[] = {
879 MARGIN_ARGS1_POSNL("size"),
886 class add_blank_cmd : public cmd_exec {
890 add_blank_cmd(cmd *c) : paper(c, true)
892 n = c->arg("n")->as_int(1);
894 vector<page *> process(vector<page *> &pages) override;
897 vector<page *> add_blank_cmd::process(vector<page *> &pages)
904 for (int i=0; i<n; i++)
906 double w = paper.w, h = paper.h;
907 if (is_zero(w) || is_zero(h))
908 w = p->width, h = p->height;
909 out.push_back(new empty_page(w, h));
916 static const arg_def add_blank_args[] = {
917 { "n", AT_INT | AT_POSITIONAL },
924 class book_cmd : public cmd_exec {
929 n = c->arg("n")->as_int(0);
931 die("Number of pages per signature must be divisible by 4");
933 vector<page *> process(vector<page *> &pages) override;
936 vector<page *> book_cmd::process(vector<page *> &pages)
938 vector<page *> in, out;
941 while (in.size() % 4)
942 in.push_back(new empty_page(in[0]->width, in[0]->height));
945 while (i < (int) in.size())
947 int sig = in.size() - i;
950 for (int j=0; j<sig/2; j+=2)
952 out.push_back(in[i + sig-1-j]);
953 out.push_back(in[i + j]);
954 out.push_back(in[i + j+1]);
955 out.push_back(in[i + sig-2-j]);
963 static const arg_def book_args[] = {
964 { "n", AT_INT | AT_POSITIONAL },
972 double tile_w, tile_h;
973 double paper_w, paper_h;
978 class nup_cmd : public cmd_exec {
980 int grid_n, grid_m, num_tiles;
994 double hspace, vspace;
995 cropmark_spec cmarks;
998 page *process_single(vector<page *> &in);
999 void find_config(vector<page *> &in, BBox *page_boxes);
1000 void try_config(nup_state &st);
1002 bool found_solution;
1003 BBox common_page_box;
1006 nup_cmd(cmd *c) : paper(c), marg(c, "margin", "margin"), pos(c), tpos(c->arg("tpos")->as_string("tl")), cmarks(c, "c", "none")
1008 grid_n = c->arg("n")->as_int(0);
1009 grid_m = c->arg("m")->as_int(0);
1010 if (grid_n > 0 && grid_m > 0)
1011 num_tiles = grid_n * grid_m;
1012 else if (grid_n > 0 && !grid_m)
1015 die("Grid size must be at least 1x1");
1017 const string by = c->arg("by")->as_string("rows");
1018 if (by == "rows" || by == "row" || by == "r")
1020 else if (by == "cols" || by == "cols" || by == "c")
1022 else if (by == "tile" || by == "t")
1025 die("Parameter \"by\" must be rows/cols/tile");
1027 crop = c->arg("crop")->as_int(0);
1028 mixed = c->arg("mixed")->as_int(0);
1029 rotate = c->arg("rotate")->as_int(-1);
1030 scale = c->arg("scale")->as_double(0);
1032 double space = c->arg("space")->as_double(0);
1033 hspace = c->arg("hspace")->as_double(space);
1034 vspace = c->arg("vspace")->as_double(space);
1036 if (!is_zero(scale) && (!is_zero(paper.w) || rotate >= 0))
1037 die("When nup is used with explicit scaling, paper size nor rotation may be given");
1038 if (!is_zero(scale) && !grid_m)
1039 die("When nup is used with explicit scaling, both grid sizes must be given");
1042 vector<page *> process(vector<page *> &pages) override;
1045 vector<page *> nup_cmd::process(vector<page *> &pages)
1049 // Unless mixed is given, find the common page size
1052 for (int i=0; i < (int) pages.size(); i++)
1055 BBox pb = crop ? p->image_box : BBox(p->width, p->height);
1057 common_page_box = pb;
1059 common_page_box.join(pb);
1061 debug("NUP: Common page box [%.3f %.3f]-[%.3f %.3f]",
1062 common_page_box.x_min, common_page_box.y_min, common_page_box.x_max, common_page_box.y_max);
1065 // Process one tile set after another
1067 while (i < (int) pages.size())
1070 if (fill_by == BY_TILE)
1072 for (int j=0; j<num_tiles; j++)
1073 in.push_back(pages[i]);
1078 for (int j=0; j<num_tiles; j++)
1080 if (i < (int) pages.size())
1081 in.push_back(pages[i]);
1083 in.push_back(new empty_page(in[0]->width, in[0]->height));
1087 out.push_back(process_single(in));
1093 void nup_cmd::try_config(nup_state &st)
1095 BBox window(st.paper_w, st.paper_h);
1096 if (!marg.may_shrink(&window))
1098 marg.shrink_box(&window);
1099 window.x_max -= (st.cols - 1) * hspace;
1100 window.y_max -= (st.rows - 1) * vspace;
1101 if (window.width() < 0 || window.height() < 0)
1104 BBox image(st.cols * st.tile_w, st.rows * st.tile_h);
1105 st.scale = scale_to_fit(image, window);
1106 st.fill_factor = (st.scale*image.width() * st.scale*image.height()) / (st.paper_w * st.paper_h);
1108 debug("Try: %dx%d on %.3f x %.3f => scale %.3f, fill %.6f",
1110 st.paper_w, st.paper_h,
1111 st.scale, st.fill_factor);
1113 if (!found_solution || best.fill_factor < st.fill_factor)
1115 found_solution = true;
1120 void nup_cmd::find_config(vector<page *> &in, BBox *page_boxes)
1124 // Determine tile size
1125 st.tile_w = st.tile_h = 0;
1126 for (int i=0; i<num_tiles; i++)
1129 page_boxes[i] = common_page_box;
1131 page_boxes[i] = in[i]->image_box;
1133 page_boxes[i] = BBox(in[i]->width, in[i]->height);
1134 st.tile_w = max(st.tile_w, page_boxes[i].width());
1135 st.tile_h = max(st.tile_h, page_boxes[i].height());
1137 debug("NUP: %d tiles of size [%.3f,%.3f]", num_tiles, st.tile_w, st.tile_h);
1140 // Try all possible configurations of tiles
1141 found_solution = false;
1142 if (!is_zero(scale))
1144 // If explicit scaling is requested, we choose page size ourselves,
1145 // so there is just one configuration.
1148 st.paper_w = marg.l + st.cols*st.tile_w + (st.cols-1)*hspace + marg.r;
1149 st.paper_h = marg.t + st.rows*st.tile_h + (st.rows-1)*vspace + marg.b;
1154 // Page size is fixed (either given or copied from the source pages),
1155 // but we can have freedom to rotate and/or to choose grid size.
1156 for (int rot=0; rot<=1; rot++)
1158 if (rotate >= 0 && rot != rotate)
1161 // Establish paper size
1162 if (!is_zero(paper.w))
1164 st.paper_w = paper.w;
1165 st.paper_h = paper.h;
1169 st.paper_w = in[0]->width;
1170 st.paper_h = in[0]->height;
1173 swap(st.paper_w, st.paper_h);
1184 for (int r=1; r<=grid_n; r++)
1188 st.cols = grid_n / r;
1195 if (!found_solution)
1196 die("Nup did not find a feasible solution");
1197 debug("Best: %dx%d on %.3f x %.3f", best.cols, best.rows, best.paper_w, best.paper_h);
1201 class nup_page : public page {
1203 vector<page *> orig_pages;
1204 vector<pdf_matrix> xforms;
1205 vector<BBox> tile_boxes;
1206 cropmark_spec *cmarks;
1207 void render(out_context *out, pdf_matrix xform) override;
1208 nup_page(nup_state &st) : page(st.paper_w, st.paper_h) { }
1211 void nup_page::render(out_context *out, pdf_matrix parent_xform)
1213 for (int i=0; i < (int) orig_pages.size(); i++)
1215 orig_pages[i]->render(out, xforms[i] * parent_xform);
1216 out->contents += cmarks->pdf_stream(out, tile_boxes[i], parent_xform);
1220 page *nup_cmd::process_single(vector<page *> &in)
1222 BBox page_boxes[num_tiles];
1223 find_config(in, page_boxes);
1224 double tw = best.scale * best.tile_w;
1225 double th = best.scale * best.tile_h;
1227 // Construct transform from paper to grid of tiles
1228 BBox paper_box(best.paper_w, best.paper_h);
1229 marg.shrink_box(&paper_box);
1230 BBox grid_box(best.cols * tw + (best.cols-1) * hspace,
1231 best.rows * th + (best.rows-1) * vspace);
1232 pdf_matrix place_xform = pos.place(grid_box, paper_box);
1234 nup_page *p = new nup_page(best);
1235 p->image_box = grid_box;
1236 p->image_box.transform(place_xform);
1238 for (int i=0; i<num_tiles; i++)
1241 if (fill_by == BY_ROWS || fill_by == BY_TILE)
1253 BBox &page_box = page_boxes[i];
1254 m.shift(-page_box.x_min, -page_box.y_min);
1255 m.scale(best.scale);
1256 page_box.transform(m);
1258 double x = c * (tw + hspace);
1259 double y = (best.rows-1-r) * (th + vspace);
1260 BBox tile_box = BBox(x, y, x+tw, y+th);
1261 m.concat(tpos.place(page_box, tile_box));
1263 p->orig_pages.push_back(in[i]);
1264 p->xforms.push_back(m * place_xform);
1265 p->tile_boxes.push_back(tile_box.transformed(place_xform));
1266 p->cmarks = &cmarks;
1272 static const arg_def nup_args[] = {
1273 { "n", AT_INT | AT_POSITIONAL | AT_MANDATORY },
1274 { "m", AT_INT | AT_POSITIONAL },
1275 { "by", AT_STRING },
1276 { "crop", AT_SWITCH },
1277 { "mixed", AT_SWITCH },
1278 { "rotate", AT_SWITCH },
1279 { "scale", AT_DOUBLE },
1281 MARGIN_ARGS1_NAMED("margin"),
1282 MARGIN_ARGS2("margin"),
1285 { "tpos", AT_STRING },
1286 { "space", AT_DIMEN },
1287 { "hspace", AT_DIMEN },
1288 { "vspace", AT_DIMEN },
1294 class cropmarks_page : public page {
1298 void render(out_context *out, pdf_matrix xform) override
1300 orig_page->render(out, xform);
1301 out->contents += cm->pdf_stream(out, image_box, xform);
1303 cropmarks_page(page *p, cropmark_spec *cms) : page(p), orig_page(p), cm(cms) { }
1306 class cropmarks_cmd : public cmd_exec_simple {
1308 page *process_page(page *p) override
1310 return new cropmarks_page(p, &cm);
1314 cropmarks_cmd(cmd *c) : cm(c) { }
1317 static const arg_def cropmarks_args[] = {
1322 /*** Command table ***/
1324 template<typename T> cmd_exec *ctor(cmd *c) { return new T(c); }
1326 const cmd_def cmd_table[] = {
1327 { "null", no_args, 0, &ctor<null_cmd> },
1328 { "move", move_args, 0, &ctor<move_cmd> },
1329 { "scale", scale_args, 0, &ctor<scale_cmd> },
1330 { "rotate", rotate_args, 0, &ctor<rotate_cmd> },
1331 { "flip", flip_args, 0, &ctor<flip_cmd> },
1332 { "select", no_args, 1, &ctor<select_cmd> },
1333 { "apply", no_args, 1, &ctor<apply_cmd> },
1334 { "modulo", modulo_args, 1, &ctor<modulo_cmd> },
1335 { "draw-bbox",no_args, 0, &ctor<draw_bbox_cmd> },
1336 { "merge", no_args, 0, &ctor<merge_cmd> },
1337 { "paper", paper_args, 0, &ctor<paper_cmd> },
1338 { "scaleto", scaleto_args, 0, &ctor<scaleto_cmd> },
1339 { "fit", fit_args, 0, &ctor<fit_cmd> },
1340 { "expand", expand_args, 0, &ctor<expand_cmd> },
1341 { "margins", margins_args, 0, &ctor<margins_cmd> },
1342 { "add-blank",add_blank_args, 0, &ctor<add_blank_cmd> },
1343 { "book", book_args, 0, &ctor<book_cmd> },
1344 { "nup", nup_args, 0, &ctor<nup_cmd> },
1345 { "cropmarks",cropmarks_args, 0, &ctor<cropmarks_cmd> },
1346 { NULL, NULL, 0, NULL }