search for: cidfontfamily

Displaying 3 results from an estimated 3 matches for "cidfontfamily".

2010 Jul 02
0
PDFfontNumber bugs in devPS.c (Re: plain text in Chinese can not be set)
...e 1 fonts */ - num = 1000 + (cidfontIndex - 1)*5 + 1 + face; + num = 1000 + (cidfontIndex - 1)*5 + face; else { /* * Check whether the font is loaded and, if not, @@ -7303,7 +7303,7 @@ } else /* (isCIDFont(family, PDFFonts)) */ { if (addPDFDeviceCIDfont(cidfontfamily, pd, &cidfontIndex)) { - num = 1000 + (cidfontIndex - 1)*5 + 1 + face; + num = 1000 + (cidfontIndex - 1)*5 + face; } else { cidfontfamily = NULL; Regards, Jinsong -- Jinsong Zhao, Ph.D. College of Resources and Environment Huazhong Agricultural University Wuhan 430...
2010 Jul 04
0
PDFfontNumber bugs in devPS.c (Re: plain text in Chinese can not be set)
...00 + (cidfontIndex - 1)*5 + 1 + face; > + num = 1000 + (cidfontIndex - 1)*5 + face; > else { > /* > * Check whether the font is loaded and, if not, > @@ -7303,7 +7303,7 @@ > } else /* (isCIDFont(family, PDFFonts)) */ { > if (addPDFDeviceCIDfont(cidfontfamily, pd, > &cidfontIndex)) { > - num = 1000 + (cidfontIndex - 1)*5 + 1 + face; > + num = 1000 + (cidfontIndex - 1)*5 + face; > } else { > cidfontfamily = NULL; > > Regards, > Jinsong -- Dr Paul Murrell Department of Statistics The University of...
2008 Mar 29
1
A patch for extending pdf device to embed popup text and web links
...Text; char title[1024]; + char **annots; /* annotations in a page */ + int annotsmax; /* allocated size */ + int annotspos; /* nubmer of annotations */ + /* * Fonts and encodings used on the device */ *************** *** 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; } PDFDe...