]>
git.cameronkatri.com Git - mandoc.git/blob - term_ps.c
1 /* $Id: term_ps.c,v 1.40 2010/08/01 15:46:18 joerg Exp $ */
3 * Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 #include <sys/param.h>
36 /* Convert PostScript point "x" to an AFM unit. */
37 #define PNT2AFM(p, x) /* LINTED */ \
38 (size_t)((double)(x) * (1000.0 / (double)(p)->engine.ps.scale))
40 /* Convert an AFM unit "x" to a PostScript points */
41 #define AFM2PNT(p, x) /* LINTED */ \
42 ((double)(x) / (1000.0 / (double)(p)->engine.ps.scale))
45 unsigned short wx
; /* WX in AFM */
49 const char *name
; /* FontName in AFM */
50 #define MAXCHAR 95 /* total characters we can handle */
51 struct glyph gly
[MAXCHAR
]; /* glyph metrics */
55 * We define, for the time being, three fonts: bold, oblique/italic, and
56 * normal (roman). The following table hard-codes the font metrics for
57 * ASCII, i.e., 32--127.
60 static const struct font fonts
[TERMFONT__MAX
] = {
354 /* These work the buffer used by the header and footer. */
355 #define PS_BUFSLOP 128
358 ps_growbuf(struct termp
*p
, size_t sz
)
360 if (p
->engine
.ps
.psmargcur
+ sz
<= p
->engine
.ps
.psmargsz
)
365 p
->engine
.ps
.psmargsz
+= sz
;
367 p
->engine
.ps
.psmarg
= realloc(p
->engine
.ps
.psmarg
,
368 p
->engine
.ps
.psmargsz
);
369 if (NULL
== p
->engine
.ps
.psmarg
)
374 static double ps_hspan(const struct termp
*,
375 const struct roffsu
*);
376 static size_t ps_width(const struct termp
*, char);
377 static void ps_advance(struct termp
*, size_t);
378 static void ps_begin(struct termp
*);
379 static void ps_closepage(struct termp
*);
380 static void ps_end(struct termp
*);
381 static void ps_endline(struct termp
*);
382 static void ps_fclose(struct termp
*);
383 static void ps_letter(struct termp
*, char);
384 static void ps_pclose(struct termp
*);
385 static void ps_pletter(struct termp
*, int);
386 static void ps_printf(struct termp
*, const char *, ...);
387 static void ps_putchar(struct termp
*, char);
388 static void ps_setfont(struct termp
*, enum termfont
);
389 static struct termp
*pspdf_alloc(char *);
390 static void pdf_obj(struct termp
*, size_t);
394 pdf_alloc(char *outopts
)
398 if (NULL
!= (p
= pspdf_alloc(outopts
)))
399 p
->type
= TERMTYPE_PDF
;
406 ps_alloc(char *outopts
)
410 if (NULL
!= (p
= pspdf_alloc(outopts
)))
411 p
->type
= TERMTYPE_PS
;
417 static struct termp
*
418 pspdf_alloc(char *outopts
)
421 size_t pagex
, pagey
, marginx
, marginy
, lineheight
;
426 if (NULL
== (p
= term_alloc(TERMENC_ASCII
)))
429 p
->advance
= ps_advance
;
432 p
->endline
= ps_endline
;
434 p
->letter
= ps_letter
;
442 while (outopts
&& *outopts
)
443 switch (getsubopt(&outopts
, UNCONST(toks
), &v
)) {
451 /* Default to US letter (millimetres). */
457 * The ISO-269 paper sizes can be calculated automatically, but
458 * it would require bringing in -lm for pow() and I'd rather not
459 * do that. So just do it the easy way for now. Since this
460 * only happens once, I'm not terribly concerned.
463 if (pp
&& strcasecmp(pp
, "letter")) {
464 if (0 == strcasecmp(pp
, "a3")) {
467 } else if (0 == strcasecmp(pp
, "a4")) {
470 } else if (0 == strcasecmp(pp
, "a5")) {
473 } else if (0 == strcasecmp(pp
, "legal")) {
476 } else if (2 != sscanf(pp
, "%zux%zu", &pagex
, &pagey
))
477 fprintf(stderr
, "%s: Unknown paper\n", pp
);
478 } else if (NULL
== pp
)
482 * This MUST be defined before any PNT2AFM or AFM2PNT
483 * calculations occur.
486 p
->engine
.ps
.scale
= 11;
488 /* Remember millimetres -> AFM units. */
490 pagex
= PNT2AFM(p
, ((double)pagex
* 2.834));
491 pagey
= PNT2AFM(p
, ((double)pagey
* 2.834));
493 /* Margins are 1/9 the page x and y. */
495 marginx
= /* LINTED */
496 (size_t)((double)pagex
/ 9.0);
497 marginy
= /* LINTED */
498 (size_t)((double)pagey
/ 9.0);
500 /* Line-height is 1.4em. */
502 lineheight
= PNT2AFM(p
, ((double)p
->engine
.ps
.scale
* 1.4));
504 p
->engine
.ps
.width
= pagex
;
505 p
->engine
.ps
.height
= pagey
;
506 p
->engine
.ps
.header
= pagey
- (marginy
/ 2) - (lineheight
/ 2);
507 p
->engine
.ps
.top
= pagey
- marginy
;
508 p
->engine
.ps
.footer
= (marginy
/ 2) - (lineheight
/ 2);
509 p
->engine
.ps
.bottom
= marginy
;
510 p
->engine
.ps
.left
= marginx
;
511 p
->engine
.ps
.lineheight
= lineheight
;
513 p
->defrmargin
= pagex
- (marginx
* 2);
519 pspdf_free(void *arg
)
523 p
= (struct termp
*)arg
;
525 if (p
->engine
.ps
.psmarg
)
526 free(p
->engine
.ps
.psmarg
);
527 if (p
->engine
.ps
.pdfobjs
)
528 free(p
->engine
.ps
.pdfobjs
);
535 ps_printf(struct termp
*p
, const char *fmt
, ...)
543 * If we're running in regular mode, then pipe directly into
544 * vprintf(). If we're processing margins, then push the data
545 * into our growable margin buffer.
548 if ( ! (PS_MARGINS
& p
->engine
.ps
.flags
)) {
549 len
= vprintf(fmt
, ap
);
551 p
->engine
.ps
.pdfbytes
+= /* LINTED */
552 len
< 0 ? 0 : (size_t)len
;
557 * XXX: I assume that the in-margin print won't exceed
558 * PS_BUFSLOP (128 bytes), which is reasonable but still an
559 * assumption that will cause pukeage if it's not the case.
562 ps_growbuf(p
, PS_BUFSLOP
);
564 pos
= (int)p
->engine
.ps
.psmargcur
;
565 len
= vsnprintf(&p
->engine
.ps
.psmarg
[pos
], PS_BUFSLOP
, fmt
, ap
);
569 p
->engine
.ps
.psmargcur
= strlen(p
->engine
.ps
.psmarg
);
574 ps_putchar(struct termp
*p
, char c
)
578 /* See ps_printf(). */
580 if ( ! (PS_MARGINS
& p
->engine
.ps
.flags
)) {
582 p
->engine
.ps
.pdfbytes
++;
588 pos
= (int)p
->engine
.ps
.psmargcur
++;
589 p
->engine
.ps
.psmarg
[pos
++] = c
;
590 p
->engine
.ps
.psmarg
[pos
] = '\0';
595 pdf_obj(struct termp
*p
, size_t obj
)
600 if ((obj
- 1) >= p
->engine
.ps
.pdfobjsz
) {
601 p
->engine
.ps
.pdfobjsz
= obj
+ 128;
602 p
->engine
.ps
.pdfobjs
= realloc
603 (p
->engine
.ps
.pdfobjs
,
604 p
->engine
.ps
.pdfobjsz
* sizeof(size_t));
605 if (NULL
== p
->engine
.ps
.pdfobjs
) {
611 p
->engine
.ps
.pdfobjs
[(int)obj
- 1] = p
->engine
.ps
.pdfbytes
;
612 ps_printf(p
, "%zu 0 obj\n", obj
);
617 ps_closepage(struct termp
*p
)
623 * Close out a page that we've already flushed to output. In
624 * PostScript, we simply note that the page must be showed. In
625 * PDF, we must now create the Length, Resource, and Page node
626 * for the page contents.
629 assert(p
->engine
.ps
.psmarg
&& p
->engine
.ps
.psmarg
[0]);
630 ps_printf(p
, "%s", p
->engine
.ps
.psmarg
);
632 if (TERMTYPE_PS
!= p
->type
) {
633 ps_printf(p
, "ET\n");
635 len
= p
->engine
.ps
.pdfbytes
- p
->engine
.ps
.pdflastpg
;
636 base
= p
->engine
.ps
.pages
* 4 + p
->engine
.ps
.pdfbody
;
638 ps_printf(p
, "endstream\nendobj\n");
640 /* Length of content. */
641 pdf_obj(p
, base
+ 1);
642 ps_printf(p
, "%zu\nendobj\n", len
);
644 /* Resource for content. */
645 pdf_obj(p
, base
+ 2);
646 ps_printf(p
, "<<\n/ProcSet [/PDF /Text]\n");
647 ps_printf(p
, "/Font <<\n");
648 for (i
= 0; i
< (int)TERMFONT__MAX
; i
++)
649 ps_printf(p
, "/F%d %d 0 R\n", i
, 3 + i
);
650 ps_printf(p
, ">>\n>>\n");
653 pdf_obj(p
, base
+ 3);
654 ps_printf(p
, "<<\n");
655 ps_printf(p
, "/Type /Page\n");
656 ps_printf(p
, "/Parent 2 0 R\n");
657 ps_printf(p
, "/Resources %zu 0 R\n", base
+ 2);
658 ps_printf(p
, "/Contents %zu 0 R\n", base
);
659 ps_printf(p
, ">>\nendobj\n");
661 ps_printf(p
, "showpage\n");
663 p
->engine
.ps
.pages
++;
664 p
->engine
.ps
.psrow
= p
->engine
.ps
.top
;
665 assert( ! (PS_NEWPAGE
& p
->engine
.ps
.flags
));
666 p
->engine
.ps
.flags
|= PS_NEWPAGE
;
672 ps_end(struct termp
*p
)
674 size_t i
, xref
, base
;
677 * At the end of the file, do one last showpage. This is the
678 * same behaviour as groff(1) and works for multiple pages as
682 if ( ! (PS_NEWPAGE
& p
->engine
.ps
.flags
)) {
683 assert(0 == p
->engine
.ps
.flags
);
684 assert('\0' == p
->engine
.ps
.last
);
688 if (TERMTYPE_PS
== p
->type
) {
689 ps_printf(p
, "%%%%Trailer\n");
690 ps_printf(p
, "%%%%Pages: %zu\n", p
->engine
.ps
.pages
);
691 ps_printf(p
, "%%%%EOF\n");
696 ps_printf(p
, "<<\n/Type /Pages\n");
697 ps_printf(p
, "/MediaBox [0 0 %zu %zu]\n",
698 (size_t)AFM2PNT(p
, p
->engine
.ps
.width
),
699 (size_t)AFM2PNT(p
, p
->engine
.ps
.height
));
701 ps_printf(p
, "/Count %zu\n", p
->engine
.ps
.pages
);
702 ps_printf(p
, "/Kids [");
704 for (i
= 0; i
< p
->engine
.ps
.pages
; i
++)
705 ps_printf(p
, " %zu 0 R", i
* 4 +
706 p
->engine
.ps
.pdfbody
+ 3);
708 base
= (p
->engine
.ps
.pages
- 1) * 4 +
709 p
->engine
.ps
.pdfbody
+ 4;
711 ps_printf(p
, "]\n>>\nendobj\n");
713 ps_printf(p
, "<<\n");
714 ps_printf(p
, "/Type /Catalog\n");
715 ps_printf(p
, "/Pages 2 0 R\n");
716 ps_printf(p
, ">>\n");
717 xref
= p
->engine
.ps
.pdfbytes
;
718 ps_printf(p
, "xref\n");
719 ps_printf(p
, "0 %zu\n", base
+ 1);
720 ps_printf(p
, "0000000000 65535 f \n");
722 for (i
= 0; i
< base
; i
++)
723 ps_printf(p
, "%.10zu 00000 n \n",
724 p
->engine
.ps
.pdfobjs
[(int)i
]);
726 ps_printf(p
, "trailer\n");
727 ps_printf(p
, "<<\n");
728 ps_printf(p
, "/Size %zu\n", base
+ 1);
729 ps_printf(p
, "/Root %zu 0 R\n", base
);
730 ps_printf(p
, "/Info 1 0 R\n");
731 ps_printf(p
, ">>\n");
732 ps_printf(p
, "startxref\n");
733 ps_printf(p
, "%zu\n", xref
);
734 ps_printf(p
, "%%%%EOF\n");
739 ps_begin(struct termp
*p
)
745 * Print margins into margin buffer. Nothing gets output to the
746 * screen yet, so we don't need to initialise the primary state.
749 if (p
->engine
.ps
.psmarg
) {
750 assert(p
->engine
.ps
.psmargsz
);
751 p
->engine
.ps
.psmarg
[0] = '\0';
754 /*p->engine.ps.pdfbytes = 0;*/
755 p
->engine
.ps
.psmargcur
= 0;
756 p
->engine
.ps
.flags
= PS_MARGINS
;
757 p
->engine
.ps
.pscol
= p
->engine
.ps
.left
;
758 p
->engine
.ps
.psrow
= p
->engine
.ps
.header
;
760 ps_setfont(p
, TERMFONT_NONE
);
762 (*p
->headf
)(p
, p
->argf
);
765 p
->engine
.ps
.pscol
= p
->engine
.ps
.left
;
766 p
->engine
.ps
.psrow
= p
->engine
.ps
.footer
;
768 (*p
->footf
)(p
, p
->argf
);
771 p
->engine
.ps
.flags
&= ~PS_MARGINS
;
773 assert(0 == p
->engine
.ps
.flags
);
774 assert(p
->engine
.ps
.psmarg
);
775 assert('\0' != p
->engine
.ps
.psmarg
[0]);
778 * Print header and initialise page state. Following this,
779 * stuff gets printed to the screen, so make sure we're sane.
784 if (TERMTYPE_PS
== p
->type
) {
785 ps_printf(p
, "%%!PS-Adobe-3.0\n");
786 ps_printf(p
, "%%%%Creator: mandoc-%s\n", VERSION
);
787 ps_printf(p
, "%%%%CreationDate: %s", ctime(&t
));
788 ps_printf(p
, "%%%%DocumentData: Clean7Bit\n");
789 ps_printf(p
, "%%%%Orientation: Portrait\n");
790 ps_printf(p
, "%%%%Pages: (atend)\n");
791 ps_printf(p
, "%%%%PageOrder: Ascend\n");
792 ps_printf(p
, "%%%%DocumentMedia: "
793 "Default %zu %zu 0 () ()\n",
794 (size_t)AFM2PNT(p
, p
->engine
.ps
.width
),
795 (size_t)AFM2PNT(p
, p
->engine
.ps
.height
));
796 ps_printf(p
, "%%%%DocumentNeededResources: font");
798 for (i
= 0; i
< (int)TERMFONT__MAX
; i
++)
799 ps_printf(p
, " %s", fonts
[i
].name
);
801 ps_printf(p
, "\n%%%%EndComments\n");
803 ps_printf(p
, "%%PDF-1.1\n");
805 ps_printf(p
, "<<\n");
806 ps_printf(p
, "/Creator mandoc-%s\n", VERSION
);
807 ps_printf(p
, ">>\n");
808 ps_printf(p
, "endobj\n");
810 for (i
= 0; i
< (int)TERMFONT__MAX
; i
++) {
811 pdf_obj(p
, (size_t)i
+ 3);
812 ps_printf(p
, "<<\n");
813 ps_printf(p
, "/Type /Font\n");
814 ps_printf(p
, "/Subtype /Type1\n");
815 ps_printf(p
, "/Name /F%zu\n", i
);
816 ps_printf(p
, "/BaseFont /%s\n", fonts
[i
].name
);
817 ps_printf(p
, ">>\n");
821 p
->engine
.ps
.pdfbody
= (size_t)TERMFONT__MAX
+ 3;
822 p
->engine
.ps
.pscol
= p
->engine
.ps
.left
;
823 p
->engine
.ps
.psrow
= p
->engine
.ps
.top
;
824 p
->engine
.ps
.flags
|= PS_NEWPAGE
;
825 ps_setfont(p
, TERMFONT_NONE
);
830 ps_pletter(struct termp
*p
, int c
)
835 * If we haven't opened a page context, then output that we're
836 * in a new page and make sure the font is correctly set.
839 if (PS_NEWPAGE
& p
->engine
.ps
.flags
) {
840 if (TERMTYPE_PS
== p
->type
) {
841 ps_printf(p
, "%%%%Page: %zu %zu\n",
842 p
->engine
.ps
.pages
+ 1,
843 p
->engine
.ps
.pages
+ 1);
844 ps_printf(p
, "/%s %zu selectfont\n",
845 fonts
[(int)p
->engine
.ps
.lastf
].name
,
848 pdf_obj(p
, p
->engine
.ps
.pdfbody
+
849 p
->engine
.ps
.pages
* 4);
850 ps_printf(p
, "<<\n");
851 ps_printf(p
, "/Length %zu 0 R\n",
852 p
->engine
.ps
.pdfbody
+ 1 +
853 p
->engine
.ps
.pages
* 4);
854 ps_printf(p
, ">>\nstream\n");
856 p
->engine
.ps
.pdflastpg
= p
->engine
.ps
.pdfbytes
;
857 p
->engine
.ps
.flags
&= ~PS_NEWPAGE
;
861 * If we're not in a PostScript "word" context, then open one
862 * now at the current cursor.
865 if ( ! (PS_INLINE
& p
->engine
.ps
.flags
)) {
866 if (TERMTYPE_PS
!= p
->type
) {
867 ps_printf(p
, "BT\n/F%d %zu Tf\n",
868 (int)p
->engine
.ps
.lastf
,
870 ps_printf(p
, "%.3f %.3f Td\n(",
871 AFM2PNT(p
, p
->engine
.ps
.pscol
),
872 AFM2PNT(p
, p
->engine
.ps
.psrow
));
874 ps_printf(p
, "%.3f %.3f moveto\n(",
875 AFM2PNT(p
, p
->engine
.ps
.pscol
),
876 AFM2PNT(p
, p
->engine
.ps
.psrow
));
877 p
->engine
.ps
.flags
|= PS_INLINE
;
880 assert( ! (PS_NEWPAGE
& p
->engine
.ps
.flags
));
883 * We need to escape these characters as per the PostScript
884 * specification. We would also escape non-graphable characters
885 * (like tabs), but none of them would get to this point and
886 * it's superfluous to abort() on them.
901 /* Write the character and adjust where we are on the page. */
903 f
= (int)p
->engine
.ps
.lastf
;
905 if (c
<= 32 || (c
- 32 > MAXCHAR
)) {
907 p
->engine
.ps
.pscol
+= (size_t)fonts
[f
].gly
[0].wx
;
911 ps_putchar(p
, (char)c
);
913 p
->engine
.ps
.pscol
+= (size_t)fonts
[f
].gly
[c
].wx
;
918 ps_pclose(struct termp
*p
)
922 * Spit out that we're exiting a word context (this is a
923 * "partial close" because we don't check the last-char buffer
927 if ( ! (PS_INLINE
& p
->engine
.ps
.flags
))
930 if (TERMTYPE_PS
!= p
->type
) {
931 ps_printf(p
, ") Tj\nET\n");
933 ps_printf(p
, ") show\n");
935 p
->engine
.ps
.flags
&= ~PS_INLINE
;
940 ps_fclose(struct termp
*p
)
944 * Strong closure: if we have a last-char, spit it out after
945 * checking that we're in the right font mode. This will of
946 * course open a new scope, if applicable.
948 * Following this, close out any scope that's open.
951 if ('\0' != p
->engine
.ps
.last
) {
952 if (p
->engine
.ps
.lastf
!= TERMFONT_NONE
) {
954 ps_setfont(p
, TERMFONT_NONE
);
956 ps_pletter(p
, p
->engine
.ps
.last
);
957 p
->engine
.ps
.last
= '\0';
960 if ( ! (PS_INLINE
& p
->engine
.ps
.flags
))
968 ps_letter(struct termp
*p
, char c
)
973 * State machine dictates whether to buffer the last character
974 * or not. Basically, encoded words are detected by checking if
975 * we're an "8" and switching on the buffer. Then we put "8" in
976 * our buffer, and on the next charater, flush both character
977 * and buffer. Thus, "regular" words are detected by having a
978 * regular character and a regular buffer character.
981 if ('\0' == p
->engine
.ps
.last
) {
983 p
->engine
.ps
.last
= c
;
985 } else if (8 == p
->engine
.ps
.last
) {
987 p
->engine
.ps
.last
= '\0';
989 assert(8 != p
->engine
.ps
.last
);
990 if ('_' == p
->engine
.ps
.last
) {
991 if (p
->engine
.ps
.lastf
!= TERMFONT_UNDER
) {
993 ps_setfont(p
, TERMFONT_UNDER
);
995 } else if (p
->engine
.ps
.lastf
!= TERMFONT_BOLD
) {
997 ps_setfont(p
, TERMFONT_BOLD
);
999 p
->engine
.ps
.last
= c
;
1002 if (p
->engine
.ps
.lastf
!= TERMFONT_NONE
) {
1004 ps_setfont(p
, TERMFONT_NONE
);
1006 cc
= p
->engine
.ps
.last
;
1007 p
->engine
.ps
.last
= c
;
1016 ps_advance(struct termp
*p
, size_t len
)
1020 * Advance some spaces. This can probably be made smarter,
1021 * i.e., to have multiple space-separated words in the same
1022 * scope, but this is easier: just close out the current scope
1023 * and readjust our column settings.
1027 p
->engine
.ps
.pscol
+= len
;
1032 ps_endline(struct termp
*p
)
1035 /* Close out any scopes we have open: we're at eoln. */
1040 * If we're in the margin, don't try to recalculate our current
1041 * row. XXX: if the column tries to be fancy with multiple
1042 * lines, we'll do nasty stuff.
1045 if (PS_MARGINS
& p
->engine
.ps
.flags
)
1050 p
->engine
.ps
.pscol
= p
->engine
.ps
.left
;
1052 /* If we haven't printed anything, return. */
1054 if (PS_NEWPAGE
& p
->engine
.ps
.flags
)
1058 * Put us down a line. If we're at the page bottom, spit out a
1059 * showpage and restart our row.
1062 if (p
->engine
.ps
.psrow
>= p
->engine
.ps
.lineheight
+
1063 p
->engine
.ps
.bottom
) {
1064 p
->engine
.ps
.psrow
-= p
->engine
.ps
.lineheight
;
1073 ps_setfont(struct termp
*p
, enum termfont f
)
1076 assert(f
< TERMFONT__MAX
);
1077 p
->engine
.ps
.lastf
= f
;
1080 * If we're still at the top of the page, let the font-setting
1081 * be delayed until we actually have stuff to print.
1084 if (PS_NEWPAGE
& p
->engine
.ps
.flags
)
1087 if (TERMTYPE_PS
== p
->type
)
1088 ps_printf(p
, "/%s %zu selectfont\n",
1090 p
->engine
.ps
.scale
);
1092 ps_printf(p
, "/F%d %zu Tf\n",
1094 p
->engine
.ps
.scale
);
1100 ps_width(const struct termp
*p
, char c
)
1103 if (c
<= 32 || c
- 32 >= MAXCHAR
)
1104 return((size_t)fonts
[(int)TERMFONT_NONE
].gly
[0].wx
);
1107 return((size_t)fonts
[(int)TERMFONT_NONE
].gly
[(int)c
].wx
);
1112 ps_hspan(const struct termp
*p
, const struct roffsu
*su
)
1117 * All of these measurements are derived by converting from the
1118 * native measurement to AFM units.
1123 r
= PNT2AFM(p
, su
->scale
* 28.34);
1126 r
= PNT2AFM(p
, su
->scale
* 72);
1129 r
= PNT2AFM(p
, su
->scale
* 12);
1132 r
= PNT2AFM(p
, su
->scale
* 100);
1136 fonts
[(int)TERMFONT_NONE
].gly
[109 - 32].wx
;
1139 r
= PNT2AFM(p
, su
->scale
* 2.834);
1143 fonts
[(int)TERMFONT_NONE
].gly
[110 - 32].wx
;
1146 r
= su
->scale
* p
->engine
.ps
.lineheight
;