|
|
@ -956,6 +956,17 @@ var PartialEvaluator = (function PartialEvaluatorClosure() { |
|
|
|
var tsm = [textState.fontSize * textState.textHScale, 0, |
|
|
|
var tsm = [textState.fontSize * textState.textHScale, 0, |
|
|
|
0, textState.fontSize, |
|
|
|
0, textState.fontSize, |
|
|
|
0, textState.textRise]; |
|
|
|
0, textState.textRise]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (font.isType3Font && |
|
|
|
|
|
|
|
textState.fontMatrix !== FONT_IDENTITY_MATRIX && |
|
|
|
|
|
|
|
textState.fontSize === 1) { |
|
|
|
|
|
|
|
var glyphHeight = font.bbox[3] - font.bbox[1]; |
|
|
|
|
|
|
|
if (glyphHeight > 0) { |
|
|
|
|
|
|
|
glyphHeight = glyphHeight * textState.fontMatrix[3]; |
|
|
|
|
|
|
|
tsm[3] *= glyphHeight; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var trm = textChunk.transform = Util.transform(textState.ctm, |
|
|
|
var trm = textChunk.transform = Util.transform(textState.ctm, |
|
|
|
Util.transform(textState.textMatrix, tsm)); |
|
|
|
Util.transform(textState.textMatrix, tsm)); |
|
|
|
if (!font.vertical) { |
|
|
|
if (!font.vertical) { |
|
|
@ -1639,6 +1650,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() { |
|
|
|
// is a tagged pdf. Create a barbebones one to get by.
|
|
|
|
// is a tagged pdf. Create a barbebones one to get by.
|
|
|
|
descriptor = new Dict(null); |
|
|
|
descriptor = new Dict(null); |
|
|
|
descriptor.set('FontName', Name.get(type)); |
|
|
|
descriptor.set('FontName', Name.get(type)); |
|
|
|
|
|
|
|
descriptor.set('FontBBox', dict.get('FontBBox')); |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
// Before PDF 1.5 if the font was one of the base 14 fonts, having a
|
|
|
|
// Before PDF 1.5 if the font was one of the base 14 fonts, having a
|
|
|
|
// FontDescriptor was not required.
|
|
|
|
// FontDescriptor was not required.
|
|
|
|