cpdf-source/cpdfspot.ml

14 lines
310 B
OCaml
Raw Normal View History

2021-12-19 14:26:15 +01:00
open Pdfutil
let list_spot_colours pdf =
Pdf.objiter
(fun _ obj ->
match obj with
Pdf.Array (Pdf.Name "/Separation"::x::_) ->
begin match Pdf.direct pdf x with
Pdf.Name col -> Printf.printf "%s\n" col
| _ -> ()
end
| _ -> ())
pdf