Search code examples
angularjspdfhebrewexport-to-pdfpdfmake

Create PDF in angular 8 in Hebrew


I want to export a PDF in hebrew language using pdfmake library. I have a html page which contains the some hebrew text.I have used canvas linrary for screenshot but I want only text pdf not an image


Solution

  • I don't know if this solution fits your needs, but you could make property holding the Hebrew text that you would like to display on the PDF. Then simply add that to the pdf (using jsPDF in this case) with doc.text(this.someHebrewText, 20, 20)

    I made an example in a Vuejs codesandbox (because that is what I know hehe). Let me know if that would work for you.