search for: iscidfont

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

Did you mean: cidfont
2010 Jul 02
0
PDFfontNumber bugs in devPS.c (Re: plain text in Chinese can not be set)
...* Use very high font number for CID fonts to avoid * Type 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 o...
2010 Jul 04
0
PDFfontNumber bugs in devPS.c (Re: plain text in Chinese can not be set)
...o avoid > * Type 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, &...
2008 Mar 29
1
A patch for extending pdf device to embed popup text and web links
...ize = size; + pd->text_a = a; + pd->text_b = b; + pd->text_x = x; + pd->text_y = y; + PDF_StrSize(str1, gc, dd, &ascent, &descent, &width); + pd->text_ascent = ascent; + pd->text_descent = descent; + pd->text_width = width; + if(isCIDFont(gc->fontfamily, PDFFonts, pd->defaultCIDFont) && face != 5) { /* NB we could be in a SBCS here */ unsigned char *buf = NULL /* -Wall */; *************** *** 7048,7053 **** --- 7116,7146 ---- } #endif + static void PDF_StrSize(const char *str, + R_GE_gcontext *gc,...