diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2006-05-13 15:52:03 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2006-05-13 15:52:03 +0000 |
| commit | 9f368a32d754b2827a38f51aa6191aa625ce6a10 (patch) | |
| tree | 4fbc67e3854b82f5646183fee666c8ae774f49a3 /paper.h | |
| parent | b45545bf362a30d958c17c4ea58eda573cc4a5b8 (diff) | |
| download | halibut-9f368a32d754b2827a38f51aa6191aa625ce6a10.zip halibut-9f368a32d754b2827a38f51aa6191aa625ce6a10.tar.gz halibut-9f368a32d754b2827a38f51aa6191aa625ce6a10.tar.bz2 halibut-9f368a32d754b2827a38f51aa6191aa625ce6a10.tar.xz | |
Generate a more-or-less valid /FontDescriptor dictionary for non-standard
fonts in PDF output.
[originally from svn r6684]
Diffstat (limited to 'paper.h')
| -rw-r--r-- | paper.h | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -87,6 +87,18 @@ struct font_info_Tag { * it), whose elements are indices into the above two arrays. */ unsigned short bmp[65536]; + /* + * Various bits of metadata needed for the /FontDescriptor dictionary + * in PDF. + */ + float fontbbox[4]; + float capheight; + float xheight; + float ascent; + float descent; + float stemv; + float stemh; + float italicangle; }; /* |