mirror of
https://github.com/johnwhitington/cpdf-source.git
synced 2024-12-12 08:46:39 +01:00
more
This commit is contained in:
parent
ad442568db
commit
39d48da070
@ -138,7 +138,11 @@ let extract_widths chars_and_widths =
|
|||||||
(* For finding the height for URL links, we try to find the Cap Height for the
|
(* For finding the height for URL links, we try to find the Cap Height for the
|
||||||
font. For now, this will only work for built-in fonts. We fall back to using
|
font. For now, this will only work for built-in fonts. We fall back to using
|
||||||
the font size alone if we cannot get the cap height. *)
|
the font size alone if we cannot get the cap height. *)
|
||||||
let cap_height fontname =
|
let cap_height font fontname =
|
||||||
|
match font with
|
||||||
|
| Some (Pdftext.SimpleFont {fontdescriptor = Some {capheight}}) ->
|
||||||
|
Some capheight
|
||||||
|
| _ ->
|
||||||
try
|
try
|
||||||
let font = unopt (Pdftext.standard_font_of_name ("/" ^ fontname)) in
|
let font = unopt (Pdftext.standard_font_of_name ("/" ^ fontname)) in
|
||||||
let header, _, _, _ = Pdfstandard14.afm_data font in
|
let header, _, _, _ = Pdfstandard14.afm_data font in
|
||||||
@ -448,7 +452,7 @@ let addtext
|
|||||||
let ex = annot_coord text e in
|
let ex = annot_coord text e in
|
||||||
let x, y = x -. hoffset -. joffset, y -. voffset in
|
let x, y = x -. hoffset -. joffset, y -. voffset in
|
||||||
let height =
|
let height =
|
||||||
match cap_height fontname with
|
match cap_height font fontname with
|
||||||
| Some c -> (c *. fontsize) /. 1000.
|
| Some c -> (c *. fontsize) /. 1000.
|
||||||
| None -> fontsize
|
| None -> fontsize
|
||||||
in
|
in
|
||||||
|
Loading…
Reference in New Issue
Block a user