Displaying 1 result from an estimated 1 matches for "text_b".
Did you mean:
text_
2008 Mar 29
1
A patch for extending pdf device to embed popup text and web links
...ice
*/
***************
*** 5149,5154 ****
--- 5154,5166 ----
cidfontfamily defaultCIDFont;
/* Record if fonts are used */
Rboolean fontUsed[100];
+
+ /*
+ * Current text geometry information (stored in PDF_Text)
+ */
+ int text_size;
+ double text_a, text_b, text_x, text_y;
+ double text_ascent, text_descent, text_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 pGEcontex...