Martina
Martina

Reputation: 11

How to create PDF in cyrillic with js

I have a problem with language in pdf format. I have this code in link, but when I put the word "Книга" in one of columns and want to download pdf file the text look like this =830. My question is how to add in code utf 8

Upvotes: 0

Views: 1418

Answers (1)

David van Driessche
David van Driessche

Reputation: 7046

As already commented by @b2238488, jsPDF doesn't support any special characters, nor does it support embedding (let alone subsetting) of fonts into PDF files. This makes it pretty much useless if you want to use cyrillic or any other language that requires UTF-8 support.

Upvotes: 2

Related Questions