2023-11-15 18:26:43 +01:00
|
|
|
open Pdfutil
|
|
|
|
open Cpdferror
|
|
|
|
|
2023-11-20 14:21:44 +01:00
|
|
|
(* FIXME Resources - what to do with each. Bookmarks? Annotations - must be duplicated... *)
|
|
|
|
(* FIXME Test how the sharing affects other cpdf operations - especially with -fast! *)
|
2023-11-16 19:18:11 +01:00
|
|
|
|
2023-11-20 11:53:51 +01:00
|
|
|
(* Chop a single page into pieces. We prefer the cropbox when available. We set
|
|
|
|
mediabox only, and delete any other boxes. *)
|
2023-11-20 12:29:17 +01:00
|
|
|
(* FIXME check non-zero based boxes *)
|
2023-11-20 14:21:44 +01:00
|
|
|
(* FIXME erase boxes *)
|
|
|
|
(* FIXME Get mediabox / cropbox properly *)
|
|
|
|
(* FIXME Check rotated pages just work *)
|
|
|
|
(* FIXME btt / rtl *)
|
2023-11-20 12:29:17 +01:00
|
|
|
let chop_boxes x y p =
|
|
|
|
if x < 1 || y < 1 then Cpdferror.error "chop_boxes bad specification" else
|
2023-11-20 14:21:44 +01:00
|
|
|
let move_page p w h dx dy =
|
|
|
|
(*Printf.printf "move_page %f %f\n" dx dy;*)
|
|
|
|
let nminx, nminy, nmaxx, nmaxy = (0. +. dx, 0. +. dy, w +. dx, h +. dy) in
|
|
|
|
{p with Pdfpage.mediabox = Pdf.Array [Pdf.Real nminx; Pdf.Real nminy; Pdf.Real nmaxx; Pdf.Real nmaxy]}
|
|
|
|
in
|
2023-11-20 12:29:17 +01:00
|
|
|
let minx, miny, maxx, maxy = 0., 0., 540., 666. in
|
|
|
|
let w, h = (maxx -. minx) /. float_of_int x, (maxy -. miny) /. float_of_int y in
|
|
|
|
let ps = ref [] in
|
2023-11-20 14:21:44 +01:00
|
|
|
for ty = y - 1 downto 0 do
|
|
|
|
for tx = 0 to x - 1 do
|
|
|
|
ps =| move_page p w h (w *. float_of_int tx) (h *. float_of_int ty)
|
2023-11-20 12:29:17 +01:00
|
|
|
done
|
|
|
|
done;
|
|
|
|
rev !ps
|
2023-11-20 11:53:51 +01:00
|
|
|
|
|
|
|
(* Chop pages in the range into pieces *)
|
|
|
|
let chop ~x ~y pdf range =
|
|
|
|
let pages = Pdfpage.pages_of_pagetree pdf in
|
|
|
|
let pages =
|
|
|
|
flatten
|
|
|
|
(map2
|
|
|
|
(fun n p -> if mem n range then (chop_boxes x y p) else [p])
|
|
|
|
(ilist 1 (Pdfpage.endpage pdf))
|
|
|
|
pages)
|
|
|
|
in
|
|
|
|
let changes = [] in (* FIXME *)
|
|
|
|
Pdfpage.change_pages ~changes true pdf pages
|