- page->index: use or remove
- rename page->bbox to page->image_box?
- "-f" switch
+- nup(crop): take max of all bboxes first?
+- nup: apply pos to placement of images in tiles
| # Position bbox on a new paper
| paper("a4")
st.tile_w = max(st.tile_w, page_boxes[i].width());
st.tile_h = max(st.tile_h, page_boxes[i].height());
}
- debug("NUP: %d tiles of size %.3f x %.3f", num_tiles, st.tile_w, st.tile_h);
+ debug("NUP: %d tiles of size [%.3f,%.3f]", num_tiles, st.tile_w, st.tile_h);
+ debug_indent += 4;
// Try all possible configurations of tiles
found_solution = false;
}
}
+ debug_indent -= 4;
if (!found_solution)
die("Nup did not find a feasible solution");
}