Kendo UI编辑器saveAsPDF,带有Unicode字符和Arial字体

时间:2018-07-13 18:20:21

标签: fonts kendo-ui kendo-editor pdf-extraction

我正在使用Kendo UI Editor的saveAsPDF选项将PDF中的编辑器内容导出。

但是Unicode字符(例如ðéêȁïïî)在PDF中无法正确显示。

如果我使用kendo.pdf.defineFont方法定义“ DejaVu Sans”字体,则Unicode字符将正确显示为PDF。

HTML:

Function ErrorLabel (ErrorMessage as string) as string
    If cbool(instr(1, ErrorMessage, "modified", vbtextcompare)) Or _
       cbool(instr(1, ErrorMessage, "weight", vbtextcompare)) then
        ErrorLabel = "Valid error"
    else
        ErrorLabel = "Invalid error"
    End If
End Function

Javascript:

data_list = ['the gamers playing games','higher scores','sports']
result =[' '.join([ps.stem(w) for w in nltk.tokenize.word_tokenize(words)])    
     for words in data_list]

但是我正在寻找一种解决方案,以使其能够使用 Arial 字体。

Click here for JSFiddle sample

0 个答案:

没有答案