Show images inside a pdf created with Gloogle Apps Script Blob
I am creating PDF files using blobs in Google Apps Script from a HTML code, but the problem is that HTML code has an image (referenced by "http") but the created pdf can't show it. This is my code function createBlobPDF(myMessage,myTitle){ var blobHTML = Utilities.newBlob(myMessage, "text/html", myTitle+ ".html"); var myPDF = blobHTML.getAs("application/pdf"); return myPDF; } Any solution? thanks!! If the images in HTML are loaded from URLs, the converted PDF file doesn't include the images. If you want to include the images in the converted PDF file, please put the images to HTML as base64