Skip to content
Advertisement

Problems downloading base64 as pdf JavaScript

I’m writing a Google Apps Script Web App, I’m facing a problem.

From server side I return the base64 encoded html code of a page:

JavaScript

And that works well. Now, from client side, I want to download the base64 (is an html RAW content) as a pdf file (or .html if it is possible), but If I try to do like this I obtain a blank pdf page

JavaScript

Note that If I try to obtain a text/plain;base64, works perfectly (return a .txt) file; but this is not what I want.

How can I achieve it?

Advertisement

Answer

Even if the proposed solution by @Tanaike is very good, I do not want to use additional permission on writing file in the Google Drive of the user (since my script is executed as “Run as user”), so I decided to use JsPDF.

Client-side code:

JavaScript

Server-side code (Google Apps Script):

JavaScript

To convert the file in a html file the approach suggested by @Tanaike is perfect: data:text/html;base64, + encoded

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement