cpdf-source/cpdftexttopdf.ml

55 lines
1.9 KiB
OCaml
Raw Normal View History

2021-12-07 00:55:46 +01:00
open Pdfutil
2022-09-21 21:45:11 +02:00
let rec of_utf8_with_newlines used charcode_extractor t =
2021-12-07 00:55:46 +01:00
let items = ref [] in
2022-09-21 16:21:57 +02:00
let buf = ref [] in
let codepoints = Pdftext.codepoints_of_utf8 t in
let charcodes_of_codepoints cs =
option_map
(fun u ->
match charcode_extractor u with
2022-09-21 21:45:11 +02:00
| Some c -> Hashtbl.replace used c (); Some (char_of_int c)
2022-09-21 16:21:57 +02:00
| None -> Printf.printf "No glyph for unicode U+%04X in this font\n" u; None)
cs
in
List.iter
2021-12-07 00:55:46 +01:00
(function
2022-09-21 16:21:57 +02:00
| 10 (*'\n'*) ->
let c = rev !buf in
if c <> [] then items := Cpdftype.Text (charcodes_of_codepoints c)::!items;
2021-12-07 00:55:46 +01:00
items := Cpdftype.NewLine::!items;
2022-09-21 16:21:57 +02:00
buf := []
| 13 (*'\r'*) -> ()
2021-12-07 00:55:46 +01:00
| x ->
2022-09-21 16:21:57 +02:00
buf := x::!buf)
codepoints;
2021-12-07 00:55:46 +01:00
(* Do last one *)
2022-09-21 16:21:57 +02:00
let c = rev !buf in
if c <> [] then items := Text (charcodes_of_codepoints c)::!items;
rev !items
2021-12-07 00:55:46 +01:00
2022-10-19 14:48:13 +02:00
let typeset ~papersize ~font ~fontsize text =
let pdf = Pdf.empty () in
let font =
match font with
| Cpdfembed.PreMadeFontPack t -> hd (fst t)
| Cpdfembed.EmbedInfo {fontfile; fontname; encoding} ->
hd (fst (Cpdfembed.embed_truetype pdf ~fontfile ~fontname ~codepoints ~encoding))
| Cpdfembed.ExistingNamedFont _ -> raise (Pdf.PDFError "Can't use existing named font for text-to-PDF")
in
2022-09-21 16:21:57 +02:00
let charcode_extractor = Pdftext.charcode_extractor_of_font_real font in
2021-12-29 16:58:03 +01:00
let margin =
2022-09-13 18:59:13 +02:00
Pdfunits.convert
72. (Pdfpaper.unit papersize) (Pdfunits.PdfPoint) (Pdfpaper.width papersize) /. 15.
2021-12-29 16:58:03 +01:00
in
2022-09-21 21:45:11 +02:00
let used = null_hash () in
2022-09-23 20:06:07 +02:00
let instrs = of_utf8_with_newlines used charcode_extractor (Pdfio.string_of_bytes text) in
let codepoints = map fst (list_of_hashtbl used) in
2021-12-07 00:55:46 +01:00
let pages =
Cpdftype.typeset
2021-12-29 16:58:03 +01:00
margin margin margin margin papersize pdf
2022-09-23 20:06:07 +02:00
([Cpdftype.Font (font, fontsize); Cpdftype.BeginDocument] @ instrs)
2021-12-07 00:55:46 +01:00
in
let pdf, pageroot = Pdfpage.add_pagetree pages pdf in
Pdfpage.add_root pageroot [] pdf