Displaying 1 result from an estimated 1 matches for "descent_max".
Did you mean:
ascent_max
2008 Mar 29
1
A patch for extending pdf device to embed popup text and web links
..._width;
}
PDFDesc;
***************
*** 5188,5197 ****
--- 5200,5217 ----
static double PDF_StrWidth(const char *str,
const pGEcontext gc,
pDevDesc dd);
+ static void PDF_StrSize(const char *str,
+ const pGEcontext gc,
+ pDevDesc dd,
+ double *ascent_max,
+ double *descent_max,
+ double *width_sum);
static void PDF_Text(double x, double y, const char *str,
double rot, double hadj,
const pGEcontext gc,
pDevDesc dd);
+ static void PDF_free_annots(PDFDesc *pd);
+ static void PDF_add_annot(PDFDesc *pd, char *str);
#ifdef SUPPORT_MBCS
stati...