node.js - Generate Arabic content with PDFKit & nodeJS -
i'm using pdfkit nodejs generate dynamically pdf files. generation works fine have problem displaying arabic characters if setup font support arabic.
the letters rendered correctly, words displayed character character :(
here's code
doc = new pdfdocument; doc.pipe(fs.createwritestream('output.pdf')); var str = "فصل الربيع الزهور \n#nature #payesage #fleurs #plantes #vert #espace #temara #rabat #maroc #weekend #balade #instamoment #instalife #instamaroc #photographie #macro #peace"; doc.font('resources/helveticaneueltarabic-roman.ttf').text(str);
any thoughts or suggestions great.
Comments
Post a Comment